To match a word in english I would use pattern [a-zA-Z]+.
Is there any way how to write a regular expression which will match a word in any language? That is even if the word contains characters like ščžé.... I have no idea what possible characters exist in the world so I don't think that pure [a-zA-Zščžé]+ would be enough...
Is there a better way to write this expression?
Thank you