http://qs321.pair.com?node_id=11138618


in reply to Re^4: s///g within m//g regions
in thread s///g within m//g regions

that's very different because there are no lines in between.

use strict; use warnings; use Test::More; my $in = 'A |simple*example| is |so*simple| to come*up |with these*days| according to some *experts*'; my $exp = 'A |simple-example| is |so-simple| to come*up |with these-days| according to some *experts*'; my $start = qr/\|/; my $stop = qr/\|/; my $got = $in; $got =~ s[ ($start) (.*?) ($stop) ][ "$1" . ( $2 =~ tr/\*/-/r ) . "$3" ]gsxe; is($got,$exp); done_testing;

updates
added

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery