Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Making multiple replaces through Regex

by prasadbabu (Prior)
on Nov 27, 2008 at 06:15 UTC ( [id://726307]=note: print w/replies, xml ) Need Help??


in reply to Making multiple replaces through Regex

Hi rsriram,

It is working fine for me. If I am wrong somewhere, please correct me. Below is a sample code.

$s = '<csp c="3">'; $s =~ s/<csp c="(\d+)">/"<colspec colnum=\"1\" colname=\"col1\"\/>\n" +x $1/egs; print $s; output: -------- <colspec colnum="1" colname="col1"/> <colspec colnum="1" colname="col1"/> <colspec colnum="1" colname="col1"/>

Prasad

Replies are listed 'Best First'.
Re^2: Making multiple replaces through Regex
by rsriram (Hermit) on Nov 27, 2008 at 06:18 UTC
    Hi Prasad, Upto this its working for me too! But my desired output is
    <colspec colnum="1" colname="col1"/> <colspec colnum="2" colname="col2"/> <colspec colnum="3" colname="col3"/>
    The value in colnum and colname needs to get incremented everytime! Thanks.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-24 09:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found