如何从脚本中删除/转义特殊字符
字符串
echo $position="marketing & executive cum \ stock ";
Outputs are: marketing & executive cum \ stock
但我想要删除后的结果:
output: marketing executive cum stock
它是如何可行的?
有任何解决方案请帮助..
答案 0 :(得分:1)
通过使用preg_replace(),您可以执行此操作
function cleanString($string) {
$string = str_replace(array( '(', ')' ), '', $string);
return preg_replace('/[^A-Za-z0-9\-]/', ' ', $string);
}
echo cleanString('marketing & executive cum \ stock ');
答案 1 :(得分:1)
使用以下
$position="marketing & executive cum \ stock ";
echo preg_replace('/[^A-Za-z0-9\-\(\) ]/', '', $position);
答案 2 :(得分:0)
这个问题可能与此有关 Remove all special characters from a string 所以请删除这个问题