I would like to know if a string contains Russian/Cyrillic characters.
For latin characters, I do something like this (pseudocode):
text := "test"
for _, r := range []rune(text) {
if r >= 'a' && r <= 'z' {
return True
}
}
return False
What is the corresponding way to do it for Russian/Cyrillic alphabet?