Help for this page

Select Code to Download


  1. or download this
    $str = "this is a string";
    print $split(/\s/,$str);
    
  2. or download this
    $str = "this is a string";
    $i = split(/\s/,$str);
    print $i;