$string = " How are you?"; #### print "How"; print "are you?"; #### $firstword = split(/^\s+/, $string); print $firstword;
## print "How"; print "are you?"; ##
## $firstword = split(/^\s+/, $string); print $firstword;