in reply to Re: Ovid, Long Live .*? (dot star question-mark)
in thread Ovid, Long Live .*? (dot star question-mark)

It should be warned, though, that using a negated character class is FAR stricter than a .*? in the regex. Code like /a.*?abc/ can match an "a" in the .*? if it has to. A regex of /a[^a]*abc/ can not.

_____________________________________________________
Jeff[japhy]Pinyan: Perl, regex, and perl hacker.
s++=END;++y(;-P)}y js++=;shajsj<++y(p-q)}?print:??;

  • Comment on Re: Re: Ovid, Long Live .*? (dot star question-mark)