The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

String::Alignment - Pair Sentence Alignment

VERSION

Version 0.01

SYNOPSIS

This module process string alignment. Now it provide two kind of alignment method, Global and Local Alignment.

    use String::Alignment;

    use String::Alignment qw(do_alignment);

    # local alignment
    my $result = do_alignment($s1,$s2,1); 

    # global alignment
    my $result = do_alignment($s1,$s2); 

EXPORT

BUILD-IN VARIABLES

FUNCTIONS

give_string_pair

cululate_matrix

similarity_print

get_align_result

AUTHOR

Cheng-Lung Sung, <clsung@cpan.org>

BUGS

Please report any bugs or feature requests to bug-string-alignment@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=String-Alignment. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2006 Cheng-Lung Sung, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.