You can use this regex:
/\b[^\d\W]+\b/g
to match all words with no digits.
RegEx Demo
[^\d\W] will match any non-digit and (non-non-word) i.e. a word character.
You can use this regex:
/\b[^\d\W]+\b/g
to match all words with no digits.
RegEx Demo
[^\d\W] will match any non-digit and (non-non-word) i.e. a word character.