http://www.perlmonks.org?node_id=1006466


in reply to Re: problem spellchecker
in thread problem spellchecker

The problem is that is an exercice and I can't use subroutines or modules.

That sounds unbelievable -- sure modules, if part of the exercise is reinventing this particular wheel, but subroutines? the fundamental unit of reusable code? I'd ask for my money back.

Replies are listed 'Best First'.
Re^3: problem spellchecker
by Anonymous Monk on Dec 01, 2012 at 13:05 UTC

    LoL however.. I got it in this way. I think the problem was the first foreach loop..

    else { $line2 =~ s/$word/$correct[$user]/; $word = $error; @words = grep { $_ ne $error } @words; }

    I made a substitution in line, then I copied $word in another scalar, $error, and then I created again the @words array without $error !