I need to match all alphabetic characters (not only [a-zA-Z]
, but really all of them including ö, ß, â, ç, Æ, Å, Ĺ, Ĩ, Ÿ, Ș, њ, ѝ, Ц, ت, ר
). In other programming languages there is character class named [:alpha:]
for this, because it is virtually impossible to name all alpha characters from all alphabets in brackets.
\w
doesn't help because it includes digits and underscore. I need letters only without digits, punctuation, spaces.