- or download this
@data{@speciesList} = split /\t/, $_, scalar @speciesList;
@data{@speciesList} = split "\t", $_, scalar @speciesList;
- or download this
@data{@speciesList} = split "/\t/", $_, scalar @speciesList;
- or download this
#!/usr/bin/perl
...
__DATA__
foo bar
foo/ /bar
- or download this
$ perl 1119187.pl
foo,bar
...
foo/,/bar
foo,bar
$