Thanks
Thanks, I was working with two languages (Bengali and English). As I had no idea how to detect Bengali, so wanted to detect English.
Sub IsThai (s As String ) As Boolean
For I = 0 To S.Length - 1
Dim codepoint As Int = Asc (S.CharAt (I))
If codepoint >= 0x0E00 AND codepoint <= 0x0E7F Then Return True
Next
Return False
End Sub
No what I've understood, using
codepoint >= 0x0E00 AND codepoint <= 0x0E7F, you've detected Thai. Can you please help me to find out those for other language?
My Language, black from U+0980 to U+09FF.