Add a new line after a matched pattern in Notepad++
问题 I have a csv-file, now i need to bring it in another form. I want to have a line break \r\n after a specific pattern. All patterns look like this: true or false; int number between 0 and 100; decimal number with two or three digits after the point; true or false; For example: false;2;23.987;false; true;0;8.37;false; false;8;166.987;false; and after the last semicolon, i want to have a line break. I am using notepad++. Thanks for your help 回答1: You may use \b(?:true|false);\d+;\d+\.\d+;(?:true