以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 如何判断是否包含中文 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=189390) |
-- 作者:fx719 -- 发布时间:2023/11/29 15:25:00 -- 如何判断是否包含中文 |
-- 作者:有点蓝 -- 发布时间:2023/11/29 15:42:00 -- Dim pattern As String = "[\\u4e00-\\u9fa5]" Dim txt = "112地方地方好483" Dim r As New System.Text.RegularExpressions.Regex(p) If r.IsMatch(txt) Then MsgBox("有中文") End If
|