导航:首页 > 净水问答 > 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搜索过滤相关的资料

热点内容
挖取树脂 浏览:149
碧丽商用饮水机是怎么制冷的 浏览:903
空气净化器分体式什么意思 浏览:975
用树脂脱水法生产无水乙醇 浏览:532
污水临时工怎么样 浏览:596
gb合成树脂乳液内墙涂料 浏览:883
瑞虎八原厂滤芯是什么牌子 浏览:209
小米空气净化器2怎么看 浏览:797
工厂向河流排放污水向哪里举报 浏览:66
反渗透直饮机怎么解锁 浏览:306
玉柴空调滤芯在哪里 浏览:697
宜兴污水池清理哪里好 浏览:67
浩纳机油滤芯多少钱 浏览:104
4月回牡丹江用隔离吗 浏览:113
pvdf中空超滤膜 浏览:975
国内外中水回用物理化学法 浏览:120
杭州污水处理企业 浏览:734
c读数字怎么过滤空格 浏览:39
如何看待日本核废水投放入海文章 浏览:788
燃油滤芯阻力系数是多少 浏览:64