用于从字符串中去除非字母数字字符的 PHP 程序
要从字符串中删除非字母数字字符,代码如下 -
示例
<?php $my_str="Thisis!@sample*on&ly)#$"; $my_str = preg_replace( '/[^a-z0-9]/i', '', $my_str); echo "The non-alphanumeric characters removed gives the string as "; echo($my_str); ?>
输出
The non-alphanumeric characters removed gives the string as Thisissampleonly
函数“preg_replace”用于从字符串中删除字母数字字符。正则表达式用于过滤出字母数字字符。该字符串先前已定义,并在该字符串上调用函数“preg_replace”,并将重组后的字符串显示在控制台上。
示例
<?php $my_str="This!#is^&*a)(sample*+_only"; $my_str = preg_replace( '/[W]/', '', $my_str); echo "The non-alphanumeric characters removed gives the string as "; echo($my_str); ?>
输出
The non-alphanumeric characters removed gives the string as Thisisasample_only
这里唯一的区别是使用了不同的正则表达式。它与前一个正则表达式意思相同,只是写法不同。
广告