You can use Notepad, use the search and replace function, select the regular expression, enter the string you want to replace in the search target box, enter \r in the replace with box, and click Replace.
This is a very powerful function. You can use it to replace any string in batches. For example, your link is 123 123 123 123. If there is no line break, you only need to search for \s and replace it with \r, then you can wrap all lines. \s represents a space. (Recommended learning: Use of notepad)
The above is the detailed content of How to replace words with line breaks in notepad. For more information, please follow other related articles on the PHP Chinese website!