in reply to Re^4: character replace
in thread character replace
Maybe it would be a good exercise to go through the code you've posted and to explain what every line is supposed to do. Especially the intention of these two parts is important:
open FH,'ent.txt'; @data=<FH>;
What does @data contain? Is data a good name for that?
foreach $dat(@data){ $text =~ s/&/&/g;
What is the output you see, and what is the output you expect. How does the output you expect relate to the rules you've set up for when to replace &?
In answering these questions to yourself, you will find the steps you need to take to modify your program from a collection of lines into something that does what you want.
|
|---|