I would like to be able to strip output between two characters. If this was regex, I would do something like \((.*?)\) to strip out all content between (and including) two parentheses.
I can see that ^substitute and ^reviseOutput allow me to replace specific characters or words with alternatives, but I can’t quite see from the manuals how I would say, replace everything between x and y. Am I missing something obvious, or not obvious, or is there no way to do this in CS? I guess one workaround would be to create a JavaScript macro, but I rather do this natively if possible. It seems like pretty standard text processing stuff so I’m hoping I may have missed it.