in reply to Replacing a specfied instance of a pattern in a string
my $foo = 'Fsih my test variable is fsihd or is it gfsih or gfsihd fsi +h'; # Replace the 3rd $foo =~ s/((?:fsih.*?){2})fsih/$1fish/i or warn "Not found"; print "Foo = $foo\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Replacing a specfied instance of a pattern in a string
by GrandFather (Saint) on Jul 15, 2005 at 01:08 UTC |