PHP php使用preg_replace从文本中删除特殊字符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP php使用preg_replace从文本中删除特殊字符相关的知识,希望对你有一定的参考价值。

# Legend for regular expression pattern used
# \s - whitespace
# [] - grouping
# \ - escape character
# \. - dot character


$text = 'this>! is %#4>sample* file 01.jpg';
$output = preg_replace('/[^a-zA-Z\s0-9\.]/', '', $text);
echo $output;


#result: this is 4sample file 01.jpg

以上是关于PHP php使用preg_replace从文本中删除特殊字符的主要内容,如果未能解决你的问题,请参考以下文章

PHP preg_replace 表达式删除 URL 参数

php实现转换html格式为文本格式的方法

当字符串包含单引号时 PHP preg_replace() 返回 null 但否则有效

PHP7 preg_replace出错及解决办法

PHP 使用PHP的preg_replace摆脱额外的空间

PHP 在 preg_replace 上崩溃