Answers for "strip \r\n php"

PHP
2

how remove \r\n from string in php

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

Browse Popular Code Answers by Language