I have a regex "/^[a-zA-Z]{2,50}$/"
which i use for an input field. This works perfectly for the English alphabet. But this doesn't work for Foreign alphabets. When I enter any foreign language, for example, Ağustos, the regex fails. How can I solve this?
I use preg_match for testing.