2
'我需要能夠在instr函數中使用兩個變量(字符串),但它不會返回正確的值,第一個示例是我需要的樣式。但似乎無法讓它工作。任何幫助將不勝感激。我一直在爲此工作3天..讓我充滿憤怒。如何在vbscript中使用VBScript中的InStr函數中的2個變量
Option Explicit
dim message, searchTerm, position
message = "bob dole was here"
searchTerm = "dole"
position = InStr(message, searchTerm)
'This always returns 0
position = InStr("bob dole was here", searchTerm)
'This returns 5, which is accurate
position = InStr(message, "dole")
'This returns 0,
所有這些都返回正確的結果,至少對我而言。無論如何,要填寫安全使用的文字比較米奇小麥建議。 – 2013-03-07 06:19:43