in reply to Re: Repeated lines
in thread Repeated lines
This is the output via web browser activation:#!/usr/bin/perl <BR> use Lingua::Ispell;<BR> print "Content-type: text/plain\n\n";<BR> print "beginning\n\n";<BR> $line="delte five";<BR> spellit();<BR> sub spellit<BR> {<BR> $spellline=$line;<BR> $realine=$line;<BR> for my $r ( Lingua::Ispell::spellcheck($spellline) ) {<BR> print "right after <BR>$spellline\n ";<BR> if ( $r->{'type'} eq 'miss' ) {<BR> print "$r->{'term'}";<BR> } <BR> } <BR> }<BR>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Repeated lines
by chipmunk (Parson) on Dec 23, 2000 at 01:55 UTC |