asp程序裏,如何判斷一個字符串中存在包含了另外一個字符串?

1.判斷是否包含某某字符函數是:Instr()和InstrRev();
2.具體使用以下:
ab="abcdefgHTTP"
你能夠用Instr()或者InstrRev()來判斷
if Instr(ab, "a")>0 then或
if InstrRev(ab, "a")>0 then

else


3.具體代碼以下:
<%
dim ly=request("LY")
if Instr(ly, "HTTP") >0 then
response.write("LY變量是包含了HTTP字符串!即TRUE")
else
response.write("LY變量中沒有包含HTTP字符串!即FALSE")
end if
%>函數

相關文章
相關標籤/搜索