Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

perlmonkey2's scratchpad

by perlmonkey2 (Beadle)
on Sep 22, 2006 at 15:33 UTC ( [id://574393]=scratchpad: print w/replies, xml ) Need Help??

sub getGrams{ my ($self,$sen,$maxSize) = @_; my @grams; $sen =~ s/[^\s\w\'\-\_]/ /g; my @words = split/\s+/,$sen; GRAM: for(my $i = 1; $i <= $maxSize-1; $i++){ for(my $x = 0; $x <= $#words+1; $x++){ my $gram = ''; for(my $y = $x; $y <= $x+$i; $y++){ if($y + $i > $#words+$i){next GRAM;} $gram .= " ".$words[$y]; } $gram =~ s/^ //; push(@grams, $gram); } } return @grams; }
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-23 22:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found