I am trying to set a token to have the following regex value `rex "by (?[^(]+)"` this regex is part of a larger search string.
This line of code `| rex "by (?[^(]+)" ` almost works but it is having problems with the <> signs surrounding the SU in the regex. Because of the `` it gets a "unexpected close tag" error.
How can I escape the <> signs so that the token will properly hold my regex with these symbols?
↧