Help for this page

Select Code to Download


  1. or download this
    sub next_word {
        my $self = shift;
    ...
            $word = $1;
            next if $self->{ignore_list}{$word};
            last if !$sp->check($word);  # 263
    
  2. or download this
    use warnings;
    use strict;
    ...
    use Text::SpellChecker;
    my $checker = Text::SpellChecker->new( text => "Foor" );
    my $word = $checker->next_word;