这是用于分析字符串...需要分解字符串以获取所有字符。基本上:
$string = "This is (1990-2002) some, text [after] this.";
我需要做什么才能得到这个:
$string = "This is ( 1990 - 2002 ) some , text [ after ] this .";
这可能是这样的:
$string = str_replace('','',$string);
注意:如果插入双空格并删除它,则不是问题...