PHP字符串preg_place,保留奇怪的字母和数字

2022-03-23 00:00:00 regex php preg-replace

我希望将这些字母和数字保留在字符串中

  • akaäö和其他奇怪的字母
  • az和其他普通字母
  • 123和其他号码

我不想要这个

  • #&;#!,_-等陌生字符

代码

$content = preg_replace("???", "", $string);

解决方案

您可以使用Jonny5方法,该方法包含在Character类中写入您需要的所有字符。您可以使用预定义的类p{Latin},它包含所有拉丁字母(也包含重音字母):

$content = preg_replace('~[^p{Latin}0-9]+~u', '', $string); 

如果您想要"世界"的所有字母或数字:

$content = preg_replace('~P{Xan}+~u', '', $string); 

相关文章