Help for this page

Select Code to Download


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