in reply to Search and Extract from String
It is much easier to build a regex, similar to the one you use to find "controlled", that looks for the sequence of the words "design" and "controlled" with either a space or a hyphen in between. A regex to match one character or another can be constructed using the pipe character. For example, (a|b) will match a or b,
|
|---|