I am trying to build a regex in C# code that checks if an input text contains either Greek or English but not both at the same time like the following example:
Angela = true
Ανγκελα = true
AngeΛα = false
Αντζela = false
I have tried the following with no luck:
[a-zA-Z\s]?[α-ωΑ-Ω\s]
[a-zA-Z\s]|[α-ωΑ-Ω\s]