Need a regex pattern to match all of the following:
hello hello. hello.cc
I tried \b\w+\.?\w+?\b, but this doesn't match "hello." (the second string mentioned above).
\b\w+\.?\w+?\b
"hello."
This is about as simple as I can get it:
\b\w+\.?\w*
See demo