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

Re: Replacing a string with a memory variable

by VSarkiss (Monsignor)
on Jun 28, 2006 at 14:08 UTC ( [id://558021]=note: print w/replies, xml ) Need Help??


in reply to Replacing a string with a memory variable

Another WTDI would be to use sprintf, if only to make the code more readable:

my $fmt = '<section id="ch%02dfm" label="" xreflabel="" role="fm">'; # ..later.. $_ =~ s/<CT>/sprintf $fmt, $acno/ge;
I guessed at the %02d in the format string based on your sample.

BTW, the default target for the substitution is $_ so you could actually shorten the assignment to just

s/<CT>/sprintf $fmt, $acno/ge;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-26 01:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found