我收到一个字符串:
$a="Delivered\r\n\t\t\t\t\t\r\n\t\t\t\t01/28/2011";
我想要
$v="Delivered@01/28/2011";
答案 0 :(得分:1)
假设您确实有一个字符串,则可以使用正则表达式删除任何空白字符:
$a = preg_replace("/\s+/", '', trim($a));
或者,如果你想在字符串中@
:
$a = preg_replace("/\s+/", '@', trim($a));
但这是否有效取决于你的输入。如果它总是如上所述,那应该没问题。
参考:trim
,preg_replace
答案 1 :(得分:0)
使用$ a = preg_replace('/ \ s + /','',$ a)并在使用$ a = preg_replace('/ \ s + /','@',$ a)之后。
用什么工具进行解析?