我需要替换“。”用“˙”,我不知道如何在VBS中这样做,在ruby中它的gsub(“。”,“˙”)但是我无法在VBS中找到任何可以做到的事情
答案 0 :(得分:3)
你试过这个吗?
REPLACE(str, ".", "˙")
答案 1 :(得分:1)
它被称为Replace。
答案 2 :(得分:0)
以下是VBS中Replace函数的MSDN
https://msdn.microsoft.com/en-us/library/bt3szac5(v=vs.90).aspx
这是w3schools
http://www.w3schools.com/asp/func_replace.asp
Replace(string,find,replacewith[,start[,count[,compare]]])