Shlomi Fish wrote:

On Sunday 10 Apr 2011 11:03:51 Sunita Rani Pradhan wrote:

             $i =~ s/d|b/G/ig;

Thsi should be :

        $line =~ s/[db]/G/ig;

Or possibly even:

        $line =~ tr/dbDB/G/;



John
--
Any intelligent fool can make things bigger and
more complex... It takes a touch of genius -
and a lot of courage to move in the opposite
direction.                   -- Albert Einstein

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to