http://qs1969.pair.com?node_id=190335


in reply to Re: Re: Manipulating multiple matches
in thread Manipulating multiple matches

Try this
my $string = "&#15123 la di da &#32714 do bi do &#04271" ; $string =~ s/&#(\d\d\d\d\d)/chr($1)/ge ; print "$string\n"
Hope that helps.