我想使用 php preg replace 单独删除反斜杠。
例如:我有一个字符串看起来像
$var = "This is the for \testing and i want to add the # and remove \slash alone from the given string";
如何\
使用php从相应的字符串中删除单独的preg_replace
我想使用 php preg replace 单独删除反斜杠。
例如:我有一个字符串看起来像
$var = "This is the for \testing and i want to add the # and remove \slash alone from the given string";
如何\
使用php从相应的字符串中删除单独的preg_replace
当 str_replace 更容易时,为什么要使用 preg_replace 。
$str = str_replace('\\', '', $str);
要在替换中使用反斜杠,它必须在preg_replace\\\\
中加倍( PHP 字符串)
echo preg_replace('/\\\\/', '', $var);
您还可以使用 stripslashes() 之类的,
<?php echo stripslashes($var); ?>
$str = preg_replace('/\\\\(.?)/', '$1', $str);
这对我有用!
preg_replace("/\//", "", $input_lines);