Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Replacing string with regexp without using modules

by pc88mxer (Vicar)
on Aug 05, 2008 at 22:51 UTC ( [id://702518]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub prog_replace_string {
      my ($replace_this, $with_this, $string) = @_;
      $string =~ s{\Q$replace_this\E}{$with_this}g;
      $string;
    }
    
  2. or download this
    sub replace_vars {
      my ($string, $hash) = @_;
    ...
    
    my %vars = ( a => 1, b => 22, c => 333 );
    print replace_vars('a: $a, b: $b, c: $c', \%vars);
    

Log In?
Username:
Password:

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

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

    No recent polls found