The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Text::OverlapFinder - find overlaps in strings

SYNOPSIS

    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";
    }

DESCRIPTION

This module is useful for efficiently finding word overlaps in strings.

AUTHORS

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>

BUGS

None.

To submit a bug report, e-mail <jmichelizzi at sourceforge.net>.

COPYRIGHT AND LICENSE

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.