以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  空格替换  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=105629)

--  作者:lihe60
--  发布时间:2017/8/23 10:47:00
--  空格替换
一个单元格内容有连续多个空格,如何把这连续多个空格替换成只有一个空格。如果只有一个空格,这个空格仍然保留。
--  作者:有点甜
--  发布时间:2017/8/23 10:57:00
--  
Dim str As String = "25阿斯蒂芬      lasd                 fjlldksajflsj"
msgbox(str)
str = System.Text.RegularExpressions.Regex.Replace(str, " +", " ")
msgbox(str)