"Replace"; 2. Enter the delimiter (such as comma) in "Find"; 3. Enter the replacement character (such as newline) in "Replace with" ); 4. Click "Replace All"."/> "Replace"; 2. Enter the delimiter (such as comma) in "Find"; 3. Enter the replacement character (such as newline) in "Replace with" ); 4. Click "Replace All".">
Home > Article > Development Tools > How to sort notespad++
Notepad column separation method: 1. Open the text and go to "Edit" > "Replace"; 2. Enter the delimiter (such as comma) in "Find"; 3. In "Replace with" Enter a replacement character (such as a newline character); 4. Click "Replace All".
Notepad column sorting tutorial
How to use Notepad to sort columns?
Splitting text into columns in Notepad is very simple:
Steps:
Example:
Suppose you have a comma-delimited text file:
<code>姓名,年龄,城市 约翰,25,纽约 玛丽,30,洛杉矶</code>
You want to break this text into newlines , please follow these steps:
After the replacement is completed, the text will be divided into the following format:
<code>姓名 约翰 玛丽 年龄 25 30 城市 纽约 洛杉矶</code>
Other options:
The above is the detailed content of How to sort notespad++. For more information, please follow other related articles on the PHP Chinese website!