I'm trying to select text between ></
. Example below I want "text"
>text</
but I'm unable to do so. tried the following but it doesn't like the slash at the end of the regex
\>(.*?)\<\
I'm trying to do this in TextPad. How is this supposed to be done?
I'm ultimately wanting to delete all text between these two characters so all I'm left with is something like: <element></element>
You are close.. use the following:
And replace with
\1\2
See DEMO
OR
You can use lookbehind and lookaheads:
And replace with
''
(empty string)See DEMO