我有xml String,在两个地方包含以下字符串,我需要通过删除单引号来修改,而不会影响其他具有单引号的部分
Contact submitted the Form 'Register here-SOD75' . See details under WWW
我希望删除单引号,使其成为:
Contact submitted the Form Register here-SOD75 . See details under WWW
引号内的值会有所不同。
我该怎么做?
答案 0 :(得分:0)
只需使用str_replace
功能。
$str = "Contact submitted the Form 'Register here-SOD75' . See details under WWW";
$str = str_replace("'", "", $str);
echo $str; //Contact submitted the Form Register here-SOD75 . See details under WWW