# split $string on a space @ary = split(/ /, $string); # split $string on one or more space @ary = split(/[ ]+/, $string);