以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]如何去掉字符串中的数字 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=126628) |
-- 作者:81538475 -- 发布时间:2018/10/25 15:03:00 -- [求助]如何去掉字符串中的数字 abcd1234 用什么方法去掉后面的数字呢。
|
-- 作者:有点蓝 -- 发布时间:2018/10/25 15:28:00 -- 参考: Dim pattern As String = "\\d+" Dim txt = "abcd1234" Dim str = System.Text.RegularExpressions.Regex.Replace(txt , pattern ,"") Output.Show(str) |