以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 如何判断一个字符串中,哪些字符是中文? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=192204) |
-- 作者:13568406997 -- 发布时间:2024/6/3 10:26:00 -- 如何判断一个字符串中,哪些字符是中文? 需要把中文字符转成unicode进行发送,英文的部分不处理。 |
-- 作者:有点蓝 -- 发布时间:2024/6/3 14:08:00 -- 提取中文 Dim pattern As String = "[^\\u4e00-\\u9fa5]" Dim txt = "112地方地方好483" Dim str = System.Text.RegularExpressions.Regex.Replace(txt , pattern , "") Output.Show(str) |