@elise_daugherty
To pass an 'or' condition in a regular expression, you can use the pipe symbol |
which acts as the OR operator:
For example, if you want to match either the word "apple" or "orange" in a string, you can use the following regex pattern:
apple|orange
This pattern will match either "apple" or "orange" in the input text.