Text::OverlapFinder - find overlaps in strings
use Text::OverlapFinder; my $finder = Text::OverlapFinder->new; my $overlaps = $finder->getOverlaps ($string1, $string2); foreach my $overlap (keys %$overlaps) { print "$overlap occurred $overlaps->{$overlap} times.\n"; }
This module is useful for efficiently finding word overlaps in strings.
Jason Michelizzi, <jmichelizzi at sourceforge.net>
Ted Pedersen, <tpederse at d.umn.edu>
Siddharth Patwardhan, <sidd at cs.utah.edu>
Satanjeev Banerjee, <satanjee+ at cs.cmu.edu>
None.
To submit a bug report, e-mail <jmichelizzi at sourceforge.net>.
Copyright (C) 2004 by Jason Michelizzi, Ted Pedersen, Siddharth Patwardhan, and Satanjeev Banerjee
This library is free software; you may redistribute it and/or modify it under the terms of the GNU General Public License, version 2 or, at your option, any later version.