Hi,
can anyone please tell me how to replace some text in a file in Perl? For example, I want to replace in a file that contains "abc" the "b" by "bb". How to do?
BUT: It should only replace the "b" and NOT the "a" and "c", so don't do it like this:
$replaced_text =~ s/abc/abbc/isg;
Thanks a lot.
Zorro