Hi,
I'm currently using this expression to validate at least 2 words, containing letters, "-" and "'"./^((\b[a-zA-Z-']{2,40}\b)\s*){2,}$/
It works fine until someone enters unicode special characters, like from different languages. I've checked the \p{L} option, but that does not work or I am missing just something. Any help would be nice.
Thanks