Is anyone aware of how to escape less than and greater than chars in the string literals in LPL?
I'm need include < and > in a regex to remove html tags from a rich text field, but the syntax doesn't seem to allow < and > in a regex that follows split on, e.g. split on "<[^>]*>".
I think < and > are reserved chars to interpolate business class values, and I haven't found a way around this.
I've tried escaping < and > with \ and also tried explicit Unicode characters. \u003C and \u003E.
Thoughts? I'm open to other ways of removing HTML from rich text fields.