Quote:
Originally Posted by DigitEditLab
Additional request, @kovid or any expert at hand:
(.*?) is a bit hungry sometimes. I'd like to match anything but the tags: only characters, digits, punctuation marks and spaces but no <>.
|
Just in case you need to match
everything between the tags, excluding the tags, this should do the trick:
(?<=<.*?>)(.*)(?=<.*?>)