Answers for "remove \n at the end of a string php"

PHP
19

git cancel last commit

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

undo local commit

$ git reset --soft HEAD~1
Posted by: Guest on April-09-2020
0

how remove \r\n from string in php

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

php remove last newline from string

$string = rtrim($string_to_remove);
Posted by: Guest on June-24-2021

Code answers related to "remove \n at the end of a string php"

Browse Popular Code Answers by Language