我有一個腳本讀取以逗號分隔的文本文件,但是無論何時使用Trim(str)我已經在文件中提取的其中一個值上,它將不起作用...Vbscript修剪功能
我的文本文件:
some string, anotherstring, onelaststring
some string, anotherstring, onelaststring
some string, anotherstring, onelaststring
some string, anotherstring, onelaststring
我的腳本:
Dim fso, myTxtFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set myTxtFile = fso.OpenTextFile("mytxt.txt")
Dim str, myTxtArr
txtContents myTxtFile.ReadAll
myTxtFile.close
myTxtArr = Split(txtContents, vbNewLine)
For each line in myTxtArr
tLine = Split(tLine, ",")
Trim(tLine(1))
If tLine(1) = "anotherstring" Then
MsgBox "match"
End If
Next
我的劇本從來沒有達到 「匹配」,我不知道爲什麼。
你是否得到一個數組越界的錯誤? – STLDeveloper
沒有錯誤,只是沒有修剪 – tarki
'trim(「一些字符串,anothertring,onelaststring」)'不等於''anothertring「''。也許你想分割「,」的線? –