导航:首页 > 净水问答 > asp搜索过滤

asp搜索过滤

发布时间:2023-02-02 20:27:40

1. ASP中如何过滤指字文字前或指定文字后所有内容呢

可以用正则进行替换,例如以下代码可以替换a及以后的内所有容字符
<%
str="1234agds34.32"
Dim regEx
Set regEx=new RegExp
regEx.pattern="a.*"
regEx.IgnoreCase =false
regEx.Global=True
str=regEx.Replace(str,"00000")
Response.Write "aaa="&str
%>

2. ASP如何过滤数组内重复内容

dim a(4)
a(0)=1
a(1)=1
a(2)=2
a(3)=2
a(4)=3
for n=0 to ubound(a)-1
for s=1 to ubound(a)

if a(s)=a(n) then
a(n)=""

end if
next

next
a_new=filter(a,"")‘把a数组里面是空值的全部删掉,然后重新组合成一个a_new数组。
for n=0 to ubound(a_new)’打印出a_new数组。
response.write a_new(n)&"<br>"

next

说明:a_new是新生成的数组,去掉了a数组里面被清空的那些,重新生成了一个开头角标是0的a_new数组。

3. asp中如何过滤掉特殊字符

user=replace(trim(request.form("uName")),"'","''")
password=replace(trim(request.form("Password")),"'","''")
if instr(user,"%") or instr(user,"#") or instr(user,"?") or instr(user,"|") or instr(user,"'") then
response.write "<script language=javascript>alert('您的姓名含有非法字符!');this.location.href='login.asp';</script>"
response.end
end if

if instr(password,"%") or instr(password,"#") or instr(password,"?") or instr(password,"|") then
response.write "<script language=javascript>alert('您的密码含有非法字符!');this.location.href='login.asp';</script>"
response.end
end if 我自己做的,希望对你有帮助

阅读全文

与asp搜索过滤相关的资料

热点内容
怡口净水器上水口有水怎么办 浏览:293
南京污水厂离城关学校有多少公里 浏览:443
净水壶滤芯多少一个 浏览:236
空气净化器iai什么意思 浏览:617
沁园truliva的RO膜怎么换 浏览:175
水草鱼缸还需要过滤吗 浏览:818
卡莱迪中央净水器如何换滤芯 浏览:954
污水处理厂的照明有什么要求 浏览:969
开水消毒奶瓶有水垢怎么办 浏览:959
饮水机烧水多少钱 浏览:394
饮水机的水怎么样去污 浏览:621
浪木2020型饮水机多少钱 浏览:961
阳离子交换树脂分离纯化蛋白质 浏览:863
超纯水中的电阻率是什么意思 浏览:635
污水泵双电源控制箱怎么接线 浏览:997
废水坏处 浏览:827
家用污水泵直径多少 浏览:626
什么化工可以去除污水里的氯离子 浏览:147
换机油滤芯器怎么操作 浏览:389
家用反渗透纯水机电线怎么接 浏览:871