asp 过滤非法字符函数

<%

Function cutbadchar(str)

badstr="不|文|明|字|符|列|表|格|式"

badword=split(badstr,"|")

For i=0 to Ubound(badword)

If instr(str,badword(i)) > 0 then

str=Replace(str,badword(i),"***")

End If

Next

cutbadchar=str

End Function

Response.Write cutbadchar("中国不阿斗发射点发明")

%>

时间: 2024-11-09 03:03:07

asp 过滤非法字符函数的相关文章

asp 过滤非法字符函数_应用技巧

<% Function cutbadchar(str) badstr="不|文|明|字|符|列|表|格|式" badword=split(badstr,"|") For i=0 to Ubound(badword) If instr(str,badword(i)) > 0 then str=Replace(str,badword(i),"***") End If Next cutbadchar=str End Function Res

php过滤非法字符函数

$str ="<a >fdafsa''&#x</a>"; echo htmlspecialchars( $str ); /* & (和) 转成 & " (双引号) 转成 " < (小于) 转成 < > (大于) 转成 > 此函式只转换上面的特殊字元,并不会全部转换成 html 所定的 ascii 转换 */ //输出 html_entity_decode($str); /* 于html_enti

javascript 过滤非法字符验证程序

这是一款用来在客户端过滤一些非法字符,可以防止一些不必要提供,更显得用户友好提示哦 javascript教程 过滤非法字符验证程序 <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>javascript 过滤非法字符验证程序</title> <script language="java

php批量过滤非法字符

php教程 批量过滤非法字符 function testAddslashes($array) {  if(!get_magic_quotes_gpc()) {   if(is_array($array)) {    foreach($array as $key => $val) {     $array[$key] = testAddslashes($val);    }   } else {       $array = addslashes($array);   }   $array=str

动态网页爱好者来看:Asp过滤HTML的函数

爱好者|动态|函数|网页 Asp过滤Html代码 Function RemoveHTML(strHTML) Dim objRegExp, Match, Matches Set objRegExp = New Regexp objRegExp.IgnoreCase = True objRegExp.Global = True '取闭合的<> objRegExp.Pattern = "<.+?>" '进行匹配 Set Matches = objRegExp.Exec

在asp中过滤非法字符的函数

<%   Function cutbadchar(str)   badstr="不|文|明|字|符|列|表|格|式"   '此处填写不文明的词语,用|分开  badword=split(badstr,"|")   For i=0 to Ubound(badword)   If instr(str,badword(i)) > 0 then   str=Replace(str,badword(i),"***")   End If   Ne

php 过滤非法字符 与过滤html js css a等html标签代码

<form name="form1" method="post" action="">   <textarea name="content" cols="50" rows="10"></textarea>   内容  <input type="submit" name="Submit" value=&quo

php 批量过滤非法字符

function testAddslashes($array) {  if(!get_magic_quotes_gpc()) {   if(is_array($array)) {    foreach($array as $key => $val) {     $array[$key] = testAddslashes($val);    }   } else {       $array = addslashes($array);   }   $array=str_replace("&a

php中过滤非法字符的具体实现_php实例

复制代码 代码如下: <?php class sqlsafe { private $getfilter = "'|(and|or)\\b.+?(>|<|=|in|like)|\\/\\*.+?\\*\\/|<\\s*script\\b|\\bEXEC\\b|UNION.+?SELECT|UPDATE.+?SET|INSERT\\s+INTO.+?VALUES|(SELECT|DELETE).+?FROM|(CREATE|ALTER|DROP|TRUNCATE)\\s+(T