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


in reply to CRSC

$eng =~ s/you/ya/ig; $eng =~ s/aren't you/int'cha/ig;

Note that the second line above will never do anything since "aren't you" will become "aren't ya" before the line is executed. Similarly, "army" will never be changed as it will become "arme" before the relavent regex gets run.

That first error jumped out at me but looking closer it looks like you've accounted for most of those types of errors. Just a few minor bugs still left (ain't that always true). (:

        - tye (but my friends call me "Tye")

Replies are listed 'Best First'.
Re: (tye)Re: CRSC
by BrotherAde (Pilgrim) on Feb 22, 2001 at 13:51 UTC
    Doesn't seem that much of a problem to me, couldn't you just switch the relevant regexen around? (Same applies to the "Pub - Nuclear sub" issue further down) Brother Ade