I've been trying to build a regex that can exclude all instances of something. I'm finding solutions online, but none work inside Workflow. Would someone be able to assist?
For example, let's say I have the following string:
I'm going to the store to look at the products.
I want a regex that will remove "the" and return
I'm going to store to look at products.
Assume that we do not know what the sentences involved will be ahead of time (the one above is just an example) so it can't be hardcoded in. Thank you for any assistance you can provide.