Difference between revisions of "Notepad++"

From wiki
Jump to navigation Jump to search
(Created page with ";Edit-Line Operations-Join Lines :What you would expect (remove line breaks)")
 
Line 1: Line 1:
 
;Edit-Line Operations-Join Lines
 
;Edit-Line Operations-Join Lines
 
:What you would expect (remove line breaks)
 
:What you would expect (remove line breaks)
 +
 +
;Search and replace with regular experssions
 +
:Search: <code>^(.*?)A</code> ;Find the first 'A'
 +
:Replace: <code>\1B</code>  ;Replace the 'A' with 'B' leave all in front if it untouched.

Revision as of 16:26, 15 June 2020

Edit-Line Operations-Join Lines
What you would expect (remove line breaks)
Search and replace with regular experssions
Search: ^(.*?)A ;Find the first 'A'
Replace: \1B ;Replace the 'A' with 'B' leave all in front if it untouched.