regex: match any word with numbers
There must be something better, but I think this should work:
\S*\d+\S*
\S*
- Zero or more non-whitespace characters
\d+
- One or more digits
\S*
- Zero or more non-whitespace characters
There must be something better, but I think this should work:
\S*\d+\S*
\S*
- Zero or more non-whitespace characters
\d+
- One or more digits
\S*
- Zero or more non-whitespace characters