Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^3: character replace

by Corion (Patriarch)
on Jun 02, 2009 at 12:30 UTC ( #767573=note: print w/replies, xml ) Need Help??


in reply to Re^2: character replace
in thread character replace

That's great. So now you can start writing your code.

In case you haven't noticed so far, Perlmonks is not a code writing service. You are expected to write your code yourself. We will help you with specific problems you have in your code but we will not write your programs for you.

Replies are listed 'Best First'.
Re^4: character replace
by sandy1028 (Sexton) on Jun 02, 2009 at 12:42 UTC
    #!/usr/bin/perl open FH,'ent.txt'; @data=<FH>; $text='&bush&amp;'; foreach $dat(@data){ $text =~ s/&/&amp;/g; print $text; }
    ent.txt file contains all the entities. This substitutes all the & with &

      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/&/&amp;/g;
      1. Why are you iterating over @data?
      2. What does change in the loop code for each iteration?
      3. How does the code in the loop reflect the rules you set up for when to replace & with &amp;?

      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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://767573]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (8)
As of 2023-12-05 22:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your preferred 'use VERSION' for new CPAN modules in 2023?











    Results (29 votes). Check out past polls.

    Notices?