Help for this page

Select Code to Download


  1. or download this
    print OUT join("\n", @finalarray);
    
  2. or download this
    use strict;
    use warnings;
    ...
    $all_text =~ s/[^a-z\-\']/ /g;
    my @wordarray = split(/[\n\s]+/, $all_text);
    ...