PHP只保留字符串中的字母,数字和空格

时间:2012-11-13 02:48:03

标签: php string preg-match

  

可能重复:
  PHP - regex to allow letters and numbers only

首先抱歉我的英语不好。 我有疑问。

我有一个字符串(这只是一个例子)

$string = 'on"c,e. //up!@#on$# a @#ti'][;me 2012';

我需要做什么,使字符串看起来像:

$string_after_clean_up = 'once upon a time 2012';

我需要删除除字母/数字和空格之外的所有符号。 我尝试使用preg_mach()但是我失败了。

1 个答案:

答案 0 :(得分:4)

$string_after_clean_up = preg_replace("/[^a-z0-9\s]/i", "", $string); $string_after_clean_up = preg_replace("/\s\s+/", " ", $string_after_clean_up);