in reply to
Re: Re: regex match question
in thread
regex match question
That doesn't work if %q starts the line - try
/^%q|[^%]%q/
[download]
or use the negative look behind
/(?<!%)%q/
Comment on
Re: Re: Re: regex match question
Download
Code
In Section
Seekers of Perl Wisdom