.asp程序里,如何判断一个字符串中存在包含了另一个字符串?
比如,得到一个字符串,dimly=request("LY"),用哪个函数判断,这个字符串中是否存在HTTP?存在返回FLASE,不存在返回TRUE...
比如,得到一个字符串,dim ly=request("LY"),用哪个函数判断,这个字符串中是否存在HTTP?存在返回FLASE,不存在返回TRUE
展开
4个回答
展开全部
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
%>
4.希望对你有所帮助!
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
%>
4.希望对你有所帮助!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
ly = request("LY")
if instr(ly,"http") > 0 then
ly = "flase"
else
ly = "true"
end if
response.write ly
%>
ly = request("LY")
if instr(ly,"http") > 0 then
ly = "flase"
else
ly = "true"
end if
response.write ly
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Instr
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询