可能重复:
PHP 从字符串中删除特殊字符
我想以这种方式找到一个正则表达式:
我在 $sms 变量中有 SMS 消息的正文。结果我会得到一个字符串:
- parenthesis
- the non alphanumeric character )([]#@*^?!|"&% and remove the other that remain
- all alphanumeric character and numeric
这是因为我的 sms 网关机器存在一些问题,它无法传递带有这个字符°的消息,该字符在意大利语言中经常用于枚举数字。
我需要使用 PHP 来执行此操作,但只有正则表达式可以提供很大帮助。