Collabora Office 21.06 Help
傳回某個字串在另一字串中的位置。
Instr 函式傳回兩個字串相符的位置。如果在另一個字串中未找到給定的字串,則函式傳回 0。
InStr([Start As Integer,]Text1 As String, Text2 As String[, Compare])
整型
Start: A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648.
Text1:要在其中進行搜尋的字串型表示式。
Text2:要搜尋的字串型表示式。
Compare:可選擇的數值型表示式,用來定義比較類型。此參數的值可以是 0 或 1。1 為預設值,用於指定文字比較 (不區分大小寫)。數值 0 則用於指定二進制比較 (區分大小寫)。
若要避免執行階段錯誤,如果沒有指定第一個傳回參數,請勿設定 Compare 參數。
Sub ExamplePosition
Dim sInput As String
Dim iPos As Integer
sInput = "Star Office"
iPos = Instr(sInput,"v")
Print iPos
End Sub