- or download this
my $test = 'illegal\\\\characters*example?';
my @illegal = qw(\ * ?);
...
$c++;
}
print $test."\n";
- or download this
A single-quoted, literal string. A backslash
represents a backslash unless followed by the
delimiter or another backslash, in which case the
delimiter or backslash is interpolated.
- or download this
my $test = 'illegal\\\\characters*example?';
my @illegal = qw(\ * ?);
...
$c++;
}
print $test."\n";