wfsp has asked for the wisdom of the Perl Monks concerning the following question:
All other HTML entity punctuation is then removed and the HTML decoded. Apart from punctuation it is all Latin1 (I've checked it - at length!).
Update 2
I should have mentioned that the text has already been stripped from an HTML file. (!)
Apologies for any confusion
#!/usr/bin/perl use strict; use warnings; use HTML::Entities; my $config = { minw => 3, maxw => 20, }; my $stop = get_stop(); my $punc = get_punc(); my $text = q| cat's dogs O’Reilly ad-hoc “broken” hyphen- the and |; my $words_all = {}; # contrived loop to show usage for my $t ($text){ get_word($t); } print "$_\n" for keys %{$words_all}; sub get_word{ my ($text, $file_key) = @_; my ($min, $max) = ($config->{minw}, $config->{maxw}); for ($text){ s/’|'/'/g; s/(&#?\w+;)/exists $punc->{$1}?' ':$1/eg; } decode_entities($text); $text =~ s/[^\w'-]/ /g; my @words = split ' ', $text; for (@words){ s/^['-]//g; s/['-]s?$//; next if length() < $min or length() > $max; next if exists $stop->{$_}; next if /\d/ and not /^[12]\d{3}s?$/; next if /--/; push @{$words_all->{$_}}, $file_key; } } sub get_stop{ # sample return { qw( and '' any '' the '' they '' ) }; } sub get_punc{ # sample return { '’' => undef, '‘' => undef, '”' => undef, '“' => undef, }; } __DATA__ ---------- Capture Output ---------- > "C:\Perl\bin\perl.exe" _new.pl hyphen cat ad-hoc O'Reilly broken dogs > Terminated with exit code 0.
At the moment the full app is run locally on a copy of the web site.
It's generating 42k words but I'm working on the stop file to try and bring it down.
If this turns out to be fairly stable I'm considering compiling the regexes outside of the loop.
What do you reckon?
winxp, activestate 5.8
Update:
Corrected get_stop() sub
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Extracting keywords from HTML
by fizbin (Chaplain) on Aug 21, 2005 at 18:11 UTC | |
by wfsp (Abbot) on Aug 21, 2005 at 18:54 UTC | |
|
Re: Extracting keywords from HTML
by superfrink (Curate) on Aug 22, 2005 at 06:11 UTC | |
|
Re: Extracting keywords from HTML
by socketdave (Curate) on Aug 21, 2005 at 13:49 UTC | |
by wfsp (Abbot) on Aug 21, 2005 at 14:09 UTC | |
|
Re: Extracting keywords from HTML
by wfsp (Abbot) on Sep 13, 2005 at 09:50 UTC |