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
のみを削除する方法
代わりに円記号を使用するには、円記号を2倍にする必要があります(\\\\
PHP string)in preg_replace
echo preg_replace('/\\\\/', '', $var);
str_replaceの方がはるかに簡単なのに、なぜpreg_replaceを使用するのでしょうか。
$str = str_replace('\\', '', $str);
次のようなstripslashes()を使用することもできます。
<?php echo stripslashes($var); ?>
これは私のために働いた!
preg_replace("/\//", "", $input_lines);
$str = preg_replace('/\\\\(.?)/', '$1', $str);