Help for this page

Select Code to Download


  1. or download this
    $array[1] = "apples\tpears\toranges";
    my @fruit = split(/\t/, $array[1]);
    print "[$_]\n" foreach @fruit;
    
  2. or download this
    [apples]
    [pears]
    [oranges]