Help for this page

Select Code to Download


  1. or download this
        # Create a new, empty, scalar
        my $text = "";
    ...
    
         # .. and parse!
         $p->parse($full_text);
    
  2. or download this
         # now hack off the first lump of words
         @list_of_words = split /[ \t\r\f]+/,
                                 $text,
                                 $n;