Hi,
Anybody could show me a regex for capturing words (alphas, without
numerics) in languages other than english (languages with special
characters i.e. french, german)? I've tried '[a-zA-Z]+' but the special
letters for some language (i.e. french) are not captured. The '\w+' works
fine, but it also include numerics, which I don't want.
TIA
Anybody could show me a regex for capturing words (alphas, without
numerics) in languages other than english (languages with special
characters i.e. french, german)? I've tried '[a-zA-Z]+' but the special
letters for some language (i.e. french) are not captured. The '\w+' works
fine, but it also include numerics, which I don't want.
TIA
Comment