我有一個腳本VBScript來隔離字符串的其餘部分
strRel = "\Program Files (x86)\Symantec\Symantec Endpoint Protection\12.1.4100.4126.105\Bin64\"
strArray = Split(strRel,"\",-1,1)
strCom = strArray(1)
wscript.echo "strCom is " & strCom
將輸出
strCom is Program Files (x86)
如何修改拆分功能,因此它輸出
strCom is \Symantec\Symantec Endpoint Protection\12.1.4100.4126.105\Bin64\
的一部分請注意,該腳本處理各種目錄和各種子文件夾。
那麼,你只是想從你的路徑中刪除第一個文件夾? – Bond