Help for this page

Select Code to Download


  1. or download this
    my @array2 =split "\n", @array;
    print $array2[1];
    
  2. or download this
    use strict;
    use warnings;
    ...
            return $string;
        }
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
        local $, = "\t";
        print @newarray, "\n";
    }
    
  4. or download this
    use strict;
    use warnings;
    ...
        local $, = "\t";
        print @newarray, "\n";
    }