Regular Expressions: Support for Non-Greedy Matching
Posted: Fri Apr 01, 2005 2:19 am
I would love support for non-greedy matching using Textpad. A great link is here:
http://www.regular-expressions.info/repeat.html
Basically, If I attempt to match everything in an alt tag such as...
And I attempt to use....
The following will be matched...
But all I really want is....
So the answer is this....
Which Textpad doesn't currently support. So I would fantastically love it if it did.
Thank you.
http://www.regular-expressions.info/repeat.html
Basically, If I attempt to match everything in an alt tag such as...
Code: Select all
<img alt="This is the text inside" src="hooplah.png" />
Code: Select all
alt=".*"
Code: Select all
alt="This is the text inside" src="hooplah.png"
Code: Select all
alt="This is the text inside"
Code: Select all
alt=".*?"
Thank you.