Answers for "remove all occurrences of \n in php"

PHP
2

how remove rn from string in php

$text = preg_replace("/r|n/", "", $text);
Posted by: Guest on January-30-2021
0

php remove t and n

$str = preg_replace('/(v|s)+/', ' ', $str);
Posted by: Guest on June-23-2021

Code answers related to "remove all occurrences of \n in php"

Browse Popular Code Answers by Language