fix: fixed wrong character numbers for lowercased cyrillic and latin characters
This commit is contained in:
parent
1eaa629949
commit
5dcf629d0d
1 changed files with 1 additions and 1 deletions
|
@ -490,7 +490,7 @@ Function isLowerCase(character As String) As Boolean
|
||||||
Else
|
Else
|
||||||
charNum = ASC(character)
|
charNum = ASC(character)
|
||||||
End If
|
End If
|
||||||
If ((charNum > 1071 AND charNum < 1104) Or (charNum > 60 AND charNum < 123)) Then
|
If ((charNum > 1071 AND charNum < 1120) Or (charNum > 96 AND charNum < 123)) Then
|
||||||
isLowerCase = true
|
isLowerCase = true
|
||||||
Exit Function
|
Exit Function
|
||||||
EndIf
|
EndIf
|
||||||
|
|
Loading…
Add table
Reference in a new issue