检查字符串strSource是否为big或big5码

商铭520

商铭520

2016-01-29 18:36

检查字符串strSource是否为big或big5码,检查字符串strSource是否为big或big5码
  Public Function CheckBIG(strSource As String) As Boolean
Dim idx As Long
Dim ByteTemp() As Byte
CheckBIG = False
For idx = 1 To Len(strSource)
  ByteTemp = StrConv(Mid(strSource, idx, 1), vbFromUnicode)
  If UBound(ByteTemp) 0 Then
    If (ByteTemp(1) = 64) And (ByteTemp(1) <= 126) Then
      CheckBIG = True
      Exit For
    End If
  End If
Next idx
End Function


 
展开更多 50%)
分享

猜你喜欢

检查字符串strSource是否为big或big5码

ASP
检查字符串strSource是否为big或big5码

Foxmail如何阅读BIG5码邮件

电脑网络
Foxmail如何阅读BIG5码邮件

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

Foxmail怎么发送BIG5码邮件

电脑网络
Foxmail怎么发送BIG5码邮件

GB码和BIG5码的互换技术

ASP
GB码和BIG5码的互换技术

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

生成BIG5字符集所有字符

编程语言 网络编程
生成BIG5字符集所有字符

让TRichEdit支持BIG5内码

编程语言 网络编程
让TRichEdit支持BIG5内码

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

服务器获得客户端时间的方法

服务器获得客户端时间的方法

ServerVariables 对路径的操作

ServerVariables 对路径的操作
下拉加载更多内容 ↓