Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Making multiple replaces through Regex

by Punitha (Priest)
on Nov 27, 2008 at 06:23 UTC ( [id://726310]=note: print w/replies, xml ) Need Help??


in reply to Making multiple replaces through Regex

Try like this,

my ($colno) = $_ =~ /<csp c="(\d+)">/; my $csp; for my $i (1..$colno) { $csp = $csp."<colspec colnum=\"$i\" colname=\"col$i\"\/>\n"; } $_=~s/<csp c=\"$colno\">/$csp/g; print "$_";

Punitha

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (5)
As of 2024-03-28 17:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found