Answers for "remove /n from multiple strings php"

PHP
2

how remove \r\n from string in php

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

Code answers related to "remove /n from multiple strings php"

Browse Popular Code Answers by Language