Thread split "ergebnis" in Variable (9 answers)
Opened by fsvB at 2013-09-29 19:04

hlubenow
 2013-09-29 19:12
#170812 #170812
User since
2009-02-22
875 Artikel
BenutzerIn
[default_avatar]
Guest fsvB
Code: (dl )
1
2
3
 $abc = "hallo / test";
$hallo = split ('\/test',$abc);
print "$halle\n";

1. 'use warnings; use strict;' fehlt!
2. 'my' fehlt.
3. "/test" ist nicht "/ test".
4. "$halle" ist nicht "$hallo".
5. split() liefert ein Array!

View full thread split "ergebnis" in Variable