Help for this page

Select Code to Download


  1. or download this
    # strip html tags
    $text     =~ s/<[^>]*>//g;
    ...
    
    # shove resulting words into an array
    my @words = $text =~ /(\w+\'*\w+)/g;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    
            ...still working on search and replaces for $word_string...
    }