PHP
提交数据时,将所有input内的 字符过滤掉,并保留其他内容。
$s=str_replace('>','',str_replace('<img src=','',$s));echo $s;</pre alt="PHP提交自动过滤掉input框内的指定字符,怎么写呢?" > </p> <p class="sougouAnswer"> <pre class="sycode" name="code"><?php$src='|<img src=(.*) alt="PHP提交自动过滤掉input框内的指定字符,怎么写呢?" >|iUs';$post=$_POST['value'];preg_match($src,$post,$v);print_r($v);?>
要是提交数据的时候处理而不是接收数据的时候处理的话,那就得用正则了,
var s=document.getElementById('input_id');
s=s.replace(/(+/ig,"");
做了不区分大小写和多行的处理,看是不是你要的吧。
preg_match('/"(.*)?.[a-Z]{3,4}"/i',$input_value,$arr);
echo $arr[0];