Created
February 8, 2026 01:40
-
-
Save uzbekdev1/c6bda882b9b3a5cf058edf5ce06110b7 to your computer and use it in GitHub Desktop.
check uzbek cyrl regex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static bool IsUzbekCyrillic(string text) | |
| { | |
| return Regex.IsMatch(text, @"[А-Яа-яҚқЎўҒғҲҳ]"); | |
| } | |
| public static bool IsRussianCyrillic(string text) | |
| { | |
| return Regex.IsMatch(text, @"[А-Яа-яЫыЭэЪъЬь]"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment