So the Cyrillic range regex (in line with your code) would be /[\u0400-\u052F]/g
This covers all Cyrillic characters and is usually used to target Cyrillic languages. Code for russian language is probably ru-RU, sometimes it is ru-KZ but like most of the time it's ru-RU no matter the specific country.
This range can also be used for many other languages although I am not really interested in them since I am not such a polyglot :D
Thanks dude I hope you'll find some time to implement that. If not, well, at least your Chinese friends are the lucky ones, cheers!
So the Cyrillic range regex (in line with your code) would be
/[\u0400-\u052F]/gThis covers all Cyrillic characters and is usually used to target Cyrillic languages. Code for russian language is probably
ru-RU, sometimes it isru-KZbut like most of the time it'sru-RUno matter the specific country.This range can also be used for many other languages although I am not really interested in them since I am not such a polyglot :D
Thanks dude I hope you'll find some time to implement that. If not, well, at least your Chinese friends are the lucky ones, cheers!