Help for this page

Select Code to Download


  1. or download this
        my @words = 
            grep { /^[a-z]/i }
            map { split }
            <FILE>;
    
  2. or download this
            map { split /\W+/ }