Skip to content

Instantly share code, notes, and snippets.

@uzbekdev1
Created February 8, 2026 01:40
Show Gist options
  • Select an option

  • Save uzbekdev1/c6bda882b9b3a5cf058edf5ce06110b7 to your computer and use it in GitHub Desktop.

Select an option

Save uzbekdev1/c6bda882b9b3a5cf058edf5ce06110b7 to your computer and use it in GitHub Desktop.
check uzbek cyrl regex
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