I need to find all the words that have the specific characters(letters, numbers and special characters) and ignore the rest.
Here's my expression:
/[cwh]\w+/ig
Example:
Match: watch, because
c,waswell ashis present in that wordSkip: Welcome, because only
candWis present
The expression need match case insensitive.
Thank you very much for your help.