OpenOffice-Wordlist

This module allows reading and writing of OpenOffice.org wordlists
(dictionaries).

For example:

    use OpenOffice::Wordlist;

    my $dict = OpenOffice::Wordlist->new;
    $dict->read(".openoffice.org/3/user/wordlist/standard.dic");

    # Print all words.
    foreach my $word ( @{ $dict->words } ) {
	print $word, "\n";
    }

    # Add some words.
    $dict->append( "openoffice", "great" );

    # Write a new dictionary.
    $dict->write("new.dic");

INSTALLATION

To install this module, run the following commands:

	perl Build.PL
	./Build
	./Build test
	./Build install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

    perldoc OpenOffice::Wordlist

You can also look for information at:

    RT, CPAN's request tracker
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=OpenOffice-Wordlist

    CPAN Ratings
        http://cpanratings.perl.org/d/OpenOffice-Wordlist

    Search CPAN
        http://search.cpan.org/dist/OpenOffice-Wordlist


COPYRIGHT AND LICENCE

Copyright (C) 2010 Johan Vromans

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