NAME

Lingua::DE::TypoGenerator - German Typo Generator

SYNOPSIS

  Object invocation:
  use Lingua::DE::TypoGenerator;
  my $ldt = Lingua::DE::TypoGenerator->new();
  my @typos = $ldt->typos("keyword");

  Old invocation:
  use Lingua::DE::TypoGenerator qw(typos);
  my @typos = typos("keyword");

DESCRIPTION

Lingua::DE::TypoGenerator will generate a list of all typo errors a user with a German keyboard is likely to produce for a given word.

You can either use the module in OO-style or import the "typos" function. Calling typos with a keyword will return an array of all likely typos.

SEE ALSO

If you are looking for a similar module that uses an englisch keyboard layout you should take a look at Lingua::TypoGenerator which, by the way, inspired this module.

The newest version of the module should always be in CPAN or on my homepage http://www.chengfu.net/

AUTHOR

Mario Witte, <mario.witte@chengfu.net>

COPYRIGHT AND LICENSE

Copyright (C) 2006 by Mario Witte

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.