Quote:
Originally Posted by DNSB
... when you think you have finally wrapped your mind around regex. 
|
Well, I don't think that's ever going to happen
Trying to grasp the difference between using
.*? vs
[^>]+>
I get that
.*? is limited to a single line, whereas
[^>]+> isn't, and that's what messed me up here. But are there other advantages to using the
[^x]+x construction over
.*?