9 Einträge, 1 Seite |
@fields = split(/\,\s\*/g, $items[1]);
@fields = split(/\s*,\s\*/g, $items[1]);
@fields = split(/\,\s*/, $items[1]);
1
2
3
4
5
$ perl -wle'
$_="test komma , backslash \\ ende";
s/[\,]//g;
print'
test komma backslash \ ende
1
2
3
4
5
use strict;
my $text = 'abc\def';
print "'$text' enthält Umlaut!" if $text =~ m~[\ä\ö\ü\ß\Ä\Ö\Ü]~;
9 Einträge, 1 Seite |