Home  >  Article  >  Backend Development  >  How to replace newlines in strings in php

How to replace newlines in strings in php

PHPz
PHPzOriginal
2023-03-21 17:17:352450browse

When writing PHP programs, we often need to replace specific characters in strings, such as newlines. Line breaks are very common in text processing and may affect the normal operation of the program, so they need to be replaced.

In PHP, you can replace newlines in a string using the built-in str_replace() function or preg_replace() function. The following describes how to use them.

Use the str_replace() function to replace newline characters

The str_replace() function can find and replace specified characters or strings in a string. The syntax is as follows:

str_replace($search, $replace, $subject);

Among them, $search represents the character or string to be found, $replace represents the character or string to be replaced, and $subject represents the string to be replaced.

To replace newlines with other characters or strings, just set the $search parameter to "\n". For example, the code to replace the newline character with the
tag is as follows:

$str = "Hello\nworld!";
$str_new = str_replace("\n", "<br>", $str);
echo $str_new;  // 输出:Hello<br>world!

Use the preg_replace() function to replace the newline character

The preg_replace() function is a powerful Regular expression replacement function can help us replace characters or strings in strings more flexibly.

To use the preg_replace() function to replace newlines in PHP, you can set the regular expression to \r\n|\r|\n, which means matching CR, LF and CRLF Three types of line breaks. The specific usage is as follows:

$str = "Hello\nworld!";
$str_new = preg_replace("/\r\n|\r|\n/", "<br>", $str);
echo $str_new;  // 输出:Hello<br>world!

The above are two methods of replacing newlines in strings in PHP. Whether you use str_replace() or preg_replace(), it is very simple and easy to understand. I hope this article can help you better understand and use string replacement functions in PHP.

The above is the detailed content of How to replace newlines in strings in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn