Quote:
Originally Posted by GrannyGrump
Because my mind does not function well for REGEX (I need cookbook samples to copy&paste) [...]
|
The following simple regex will look for one or more letters followed by
= " < > / and one or more letters.
Code:
[[:alpha:]]+[=|"|<|>|/][[:alpha:]]+
E.g., it'll find
te"st but not
"test"
You'll many more recipes in the
Regex examples thread. If you post your question there, one of the MR regex experts will come up with a bespoke regex for you.