如何用asp判断一个字符串中包含一个指定字符

2025-05-02 22:51:44
推荐回答(1个)
回答1:

if instr(1,字串,"要找到字符")=false then
msgbox"没找到"
else
msgbox"找到了"
end if