Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: replacing part of a string

by radiantmatrix (Parson)
on May 13, 2009 at 15:48 UTC ( [id://763805]=note: print w/replies, xml ) Need Help??


in reply to replacing part of a string

Hm, think about it this way:

open my $FILE, '<', $name_of_file_with_functions_in_it or die ("Crap: +$!"); while (<$FILE>) { s/\bC\b/$z/g; # replace the *word* "C" with the contents of $z print $_; } close $FILE;

This prints the output to STDOUT

If you want to replace 'C' with the literal string '$z', then you just have to escape the $ in the above (\$z).

<radiant.matrix>
Ramblings and references
“A positive attitude may not solve all your problems, but it will annoy enough people to make it worth the effort.” — Herm Albright
I haven't found a problem yet that can't be solved by a well-placed trebuchet

Replies are listed 'Best First'.
Re^2: replacing part of a string
by Anonymous Monk on May 14, 2009 at 04:28 UTC
    Hey!!! Its Working thanx!!! monks... :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2025-02-16 11:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found