I\'m attempting to non-greedily parse out TD tags. I\'m starting with something like this:
stuff More stuff
-
From https://regex101.com/
*
Quantifier — Matches between zero and unlimited times, as many
times as possible, giving back as needed (greedy)
*?
Quantifier — Matches between zero and unlimited times, as few times as possible, expanding as needed (lazy)
- 热议问题