I have the following XML tag
I want to replace the < in the text with <>
<
[^<]+ = one or more characters that are not <
[^<]+
< = the < you're looking for
replace:
([^<]+)<
with:
$1<