如何删除特殊字符:& )(\ /来自使用php的字符串?

时间:2017-03-11 10:01:37

标签: php html mysql

如何从脚本中删除/转义特殊字符

字符串

echo $position="marketing & executive cum \ stock ";

Outputs are: marketing & executive cum \ stock

但我想要删除后的结果:

output: marketing executive cum stock

它是如何可行的?

有任何解决方案请帮助..

3 个答案:

答案 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 所以请删除这个问题