Help for this page

Select Code to Download


  1. or download this
    $string = " How are you?";
    
  2. or download this
    print "How";
    print "are you?";
    
  3. or download this
    $firstword = split(/^\s+/, $string);
    
    print $firstword;