How do I match text between <> brackets using regexes? #4652
kamransoomro84
started this conversation in
General
Replies: 1 comment 1 reply
-
Hi, unfortunately this is not possible at the moment. The underlying reason is that regexes don't match across text nodes and in your case, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using the following regex:
But it doesn't work. A single
<
correctly matches angle brackets but as soon as I type any other character it doesn't match anything. For example, I have the following text:But the regex
<20
doesn't match this either.Escaping the brackets doesn't work either.
MWE
Beta Was this translation helpful? Give feedback.
All reactions