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

How to replace the string within a string

by Anonymous Monk
on Feb 03, 2001 at 05:18 UTC ( [id://56175]=perlquestion: print w/replies, xml ) Need Help??

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: How to replace the string withing a string
by coolmichael (Deacon) on Feb 04, 2001 at 02:02 UTC
    $_="I want to replace <P> in my string. I have to search for the <P> a +nd replace it with space. Thanks"; s/<P>/ /gi; print;
    results in:
    I want to replace in my string. I have to search for the and repla +ce it with space. Thanks
    update: You might also want to try perldoc perlre which explains regular expressions fairly well.
Re: How to replace the string withing a string
by MeowChow (Vicar) on Feb 03, 2001 at 05:20 UTC
    s/<P>/ /g

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-18 06:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found