PC6下载站

分类分类

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

关注+2004-11-07作者:蓝点

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






展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消