kingman has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I just read
[id://20361|How would I replace the string 'Red1' with $Red1?]
But I still can't figure this out. Here's the code:
If I add the /e modifier, the complier chokes when it tries to evaulate «
But I still can't figure this out. Here's the code:
This turns all img links into «TOKEN_0++»; $n interpolotes but doesn't increment.$n = 0; $html_file_slurped_to_a_scalar =~ s/<img .*?>/«TOKEN_$n++»/gis;
If I add the /e modifier, the complier chokes when it tries to evaulate «
Maybe I'm trying to do too much but I'd like to avoid the following loop if I can:Unrecognized character \xAB at /path/foo line 25.
evaluate $html_file_slurped_to_a_scalar
change the first image tag to «TOKEN_$n»
increment $n
Any suggestions?
Back to
Seekers of Perl Wisdom