in reply to Re^2: Finding a LCS module on word level
in thread Finding a LCS module on word level
#!/usr/bin/perl use strict; use warnings; use String::LCSS_XS qw(lcss); my $longest = lcss ( "perl find perl module", "perl module"); print $longest, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Finding a LCS module on word level
by Limbic~Region (Chancellor) on May 10, 2008 at 00:33 UTC |