From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The InStr function returns the position of the first occurrence of one string within another.
The InStr function can return the following values:
Tip: Also look at the InStrRev function
| InStr([start,]string1,string2[,compare]) |
| Parameter | Description |
|---|---|
| start | Optional. Specifies the starting position for each search. The search begins at the first character position by default. This parameter is required if compare is specified |
| string1 | Required. The string to be searched |
| string2 | Required. The string expression to search for |
| compare | Optional. Specifies the string comparison to use.
Default is 0 Can have one of the following values:
|
|
Dim txt,pos txt="This is a beautiful day!" pos=InStr(txt,"his") document.write(pos) Output: 2 |
|
Dim txt,pos txt="This is a beautiful day!" 'A textual comparison starting at position 4 pos=InStr(4,txt,"is",1) document.write(pos) Output: 6 |
|
Dim txt,pos txt="This is a beautiful day!" 'A binary comparison starting at position 1 pos=InStr(1,txt,"B",0) document.write(pos) Output: 0 |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)