描述InStr([start, ]string1, string2[, compare]) 返回指定一字串在另一字串中最先出現的位置。
在字串string1中,從start開始找string2,省略start時從string1頭開始找。找不到時,函式值為0。
如果
string1 為零長度 InStr返回 0 ;
string1 為 Null InStr返回 Null ;
string2 為零長度 InStr返回 Start 的值 ;
string2 為 Null InStr返回 Null ;
string2 找不到 InStr返回 0 ;
在 string1 中找到string2 InStr返回 找到的位置 ;
start 值 > string2 值 InStr返回 0
dim S
s=instr(a,b)
if s=0 and s=null then
不包含
else
包含
end if
描述InStr([start, ]string1, string2[, compare]) 返回指定一字串在另一字串中最先出現的位置。
在字串string1中,從start開始找string2,省略start時從string1頭開始找。找不到時,函式值為0。
如果
string1 為零長度 InStr返回 0 ;
string1 為 Null InStr返回 Null ;
string2 為零長度 InStr返回 Start 的值 ;
string2 為 Null InStr返回 Null ;
string2 找不到 InStr返回 0 ;
在 string1 中找到string2 InStr返回 找到的位置 ;
start 值 > string2 值 InStr返回 0
dim S
s=instr(a,b)
if s=0 and s=null then
不包含
else
包含
end if