Leser: 2
9 Einträge, 1 Seite |
1
2
perl -Mcharnames=:full -e 'warn charnames::viacode(8220)'
LEFT DOUBLE QUOTATION MARK at -e line 1.
1
2
3
4
5
6
7
8
9
my $string = "attribut = wert = 20";
my @list1 = split(/ = /, $string); # 'attribut', 'wert', '20'
my @list2 = split(/ = /, $string, 2); # 'attribut', 'wert = 20'
# wie @list2: am sichersten, weil die leerzeichen relativ gehandhabt werden
# und auch eventuelle tabs keine probleme machen
my @list3 = split(/\s*=\s*/, $string, 2);
my @list4 = split(/\s*(=)\s*/, $string, 2); # 'attribut', '=', 'wert = 20'
9 Einträge, 1 Seite |