今天在寫自動化腳本時,須要把字符串中的空格替換成其餘特殊字符,但字符間的空格個數又不肯定,通過搜索,成功解決。函數
解決重點就是把每一個空格字符串搜索出來,而後進行替換,主要用到space函數。spa
strStarter = "vbs is script" strLenth = Len(strStarter) msgbox strLenth '字符串有14個字符 For i = strLenth to 1 Step -1 strChars = Space(i) 'space函數返回由指定數目空格組成的字符串 strStarter = Replace(strStarter, strChars, ";") Next msgbox strStarter lens = Len(strStarter) msgbox lens '替換後字符串有13個字符,"is"後的2個空格被分號替代