Maison >développement back-end >tutoriel php > 求正则表达式:只保留字符串中的汉字跟字母
求正则表达式:只保留字符串中的汉字和字母
求正则表达式:只保留字符串中的汉字和字母
$s = '#$%^4sdfg3哈哈sdfgfdg$@#%@#$%AS<h>?><,.~!tt方法';<br /> echo preg_replace('/[\d\W_]/u', '', $s);
echo preg_replace('/[\d\W_a-z]/iu', '', $s);哈哈方法