http://www.perlmonks.org?node_id=1076231


in reply to Re: String regex replacement
in thread String regex replacement

...now all we need is a script to generate that %replacement hash :o)

-- FloydATC

Time flies when you don't know what you're doing

Replies are listed 'Best First'.
Re^3: String regex replacement
by hdb (Monsignor) on Feb 26, 2014 at 07:58 UTC

    How about this?

    use strict; use warnings; use Data::Dumper; my $post = "Hi, erm does anyone know how to do a string replacement th +at caters for all the following scenario? 500 changes to 000 or 0 988 + changes to 000 or 0 1210 changes to 1000 1300 changes to 1000 2134 c +hanges to 2000 2500 changes to 2000 Thanks in advance."; my %replacement = $post =~ /(\d+) changes to (\d+)/g; print Dumper \%replacement;