I want to know if a String such as "equi-distant" or "they're" contains a non-word character. Is there a simple way to check for it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It depends entirely on what you mean by "word character". If by "word character" you mean A-Z or a-z then you can use this:
If you mean "any character that is considered to be a letter in Unicode", then look at This is code provided by bobbymcr nearly works:
However see the documentation:
This should work for all Unicode characters:
|
|||||||||||||
|
|
Solution without regex (generally faster for a very simple check like this):
|
|||||||||
|
|
I like the non-regex way. But with regex it could be written like this-
|
|||
|
|