How to remove new line character from a string in PHP
In this post we will give you information about How to remove new line character from a string in PHP. Hear we will give you detail about How to remove new line character from a string in PHPAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to remove the new line character from a string inPHP.
Removing the new line character
To remove the new line character from a string, we can use the str_replace() function by passing n regex as an argument in PHP.
Here is an example, that removes the new line character from the following string:
$greet = "HelloGoogle";$string = str_replace("n", " ", $greet);echo $greet;
Output:
Hello Google
Hope this code and post will helped you for implement How to remove new line character from a string in PHP. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs