![]() |
|
more useful options | |
PerlMonks |
Interpolate Text Not Inside a Certain Tagby Anonymous Monk |
on Apr 07, 2005 at 17:10 UTC ( #445791=perlquestion: print w/replies, xml ) | Need Help?? |
Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question: OK, the title may be confusing, but I don't know how to write a summary for this problem. I'm writing a really simple Wiki-like engine. The problem is, Wiki is much like Perl's double-quote mark, but sometimes you want a single-quote:
becomes
In short, I want the text between two pairs of backticks not to be processed. I can't think of any way to do this with simple regexps, so please help me. :) By the way, I'm using something like s/\*\*(.+?)\*\*/<b>$1</b>/gs for the tags processing; anyone has a better idea?
Back to
Seekers of Perl Wisdom
|
|