How do I match French and Russian Cyrillic alphabet characters with a regular expression? I only want to do the alpha characters, no numbers or special characters. Right now I have
[A-Za-z]
It depends on your regex flavor. If it supports Unicode character classes (like .NET, for instance), \p{L}
matches a letter character (in any character set).