Leser: 1
|< 1 2 >| | 16 Einträge, 2 Seiten |
1
2
Missing control char name in \c
(F) A double-quoted string ended with "\c", without the required control character name.
Quoteund beim nächsten mal bitte code-tags verwenden.
Quoteund beim nächsten mal bitte code-tags verwenden.
Quote... Missing control char name in \c at index.pl line 1679, within pattern
...
$page=~s/\c/ /gi;
$page=~s/<script.*\/script>//gi;
zeile 1679 ist diese >> $page=~s/<script.*\/script>//gi;
1
2
3
4
5
6
7
8
9
$stitle=$response->title();
$page=$response->content();
$page=~s/\n/ /gi;
$page=~s/\r/ /gi;
$page=~s/\c/ /gi;
$page=~s/<script.*\/script>//gi;
$page=~s/<style.*\/style>//gi;
while($page=~/ /){
$page=~s/ / /gi;
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/perl
use strict;
use warnings;
for(0..10000){
mache_was($_);
}
sub mache_was{
my ($param) = @_;
$param++;
print $param,"\n";
}
|< 1 2 >| | 16 Einträge, 2 Seiten |