Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

(zdog) Re: Sequential Replacement

by zdog (Priest)
on Jul 09, 2002 at 17:53 UTC ( [id://180555]=note: print w/replies, xml ) Need Help??


in reply to Sequential Replacement

Here's a little different way of doing it that may give you some other ideas:

use strict; use warnings; my @array = qw (zero one two); my $str = "blah ##REP0## blah ##REP1##\nblah ##REP2##\n"; $str =~ s/##REP(\d+?)##/$array[$1]/g; print $str;

Update: Another idea is to replace the ##*##'s with %s and do:

$str = sprintf ($str, @array);

Just a thought ...

Zenon Zabinski | zdog | zdog@perlmonk.org

Log In?
Username:
Password:

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

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

    No recent polls found