Answers for "string remove new line php"

PHP
19

git cancel last commit

git reset --soft HEAD~1
Posted by: Guest on March-30-2020
-1

remove last commit git

git reset --hard HEAD^
git push origin -f
Posted by: Guest on October-01-2020
0

how remove \r\n from string in php

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

string remove line breaks php

preg_replace( "/\r|\n/", "", $yourString );
Posted by: Guest on May-18-2020

Code answers related to "string remove new line php"

Browse Popular Code Answers by Language