📜  vbscript 从字符串中删除空格 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.288000             🧑  作者: Mango

代码示例1
' The Replace function replaces a specified part of a string with another string a specified number of times.
txt="This is a beautiful day."
Replace(txt," ","",1,-1)

' Output: Thisisabeautifulday.