http://qs321.pair.com?node_id=726307


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.