Help for this page
$str = "this is a string"; print $split(/\s/,$str);
$str = "this is a string"; $i = split(/\s/,$str); print $i;