Answers for "rus text check php"

PHP
3

rus text check php

function isRussian($text) {
    return preg_match('/[А-Яа-яЁё]/u', $text);
}
Posted by: Guest on January-07-2022

Code answers related to "rus text check php"

Browse Popular Code Answers by Language