sanPerl has asked for the wisdom of the Perl Monks concerning the following question:
$htmlbuffer =~ s{>(.*?)<} { my ($mydata) = ($1); $mydata =~ s/abcd/efgh/gs; $mydata =~ s/yyy/zzz/gs; “>$mydata<” }exgs;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: In HTML , I Want to process only Data and Not tags
by GrandFather (Saint) on Jul 25, 2006 at 20:39 UTC | |
by revdiablo (Prior) on Jul 25, 2006 at 21:33 UTC | |
Re: In HTML , I Want to process only Data and Not tags
by lorn (Monk) on Jul 25, 2006 at 20:25 UTC | |
by duckyd (Hermit) on Jul 25, 2006 at 22:05 UTC | |
by n00dles (Novice) on Jul 25, 2006 at 23:57 UTC | |
by GrandFather (Saint) on Jul 26, 2006 at 00:22 UTC |