If you have a requirement wherein you want to add blank lines after each line in a text file, you can achieve it using Text Editors which supports Find and Replace using Regular Expressions.
Using Notepad++
- Open the file in Notepad++
- Press Ctrl + H to open Find and Replace Option.
- Choose Select Mode : Extended.
- In the Find text filed add : \n
- In Replace with : text field add : \n\n, click Replace All.
You would see that there is a blank line added after each line.
Other way :
- Open Find and Replace,
- Choose Select Mode : Regular Expression .
- Find : $
- Replace with : \n
✌️ $ implies the end of the line.
More Posts related to NotepadPlusPlus,
- Notepad++ hex editor Examples
- Are Windows Notepad files recoverable?
- How to add or remove bookmark on a line in Notepad++
- How to rename a tab in Notepad++
- Go to Line Number option in Windows Notepad
- How to Apply Themes to Notepad++
- Notepad++ Save Failed - Please check if this file is opened in another program.
- Encode/Decode URL Query String in Notepad++
- Remove duplicate lines using Notepad++
- Add comma or semicolon at end of each line Notepad++
- How to open Notepad?
- Where are Notepad++ macros stored?
- How to check about details of Notepad++ text editor
- Notepad++ Export file as HTML
- Indent/Prettify HTML File in Notepad++
- Notepad++ Reload - This file has been modified by another program. Do you want to reload it?
- List of Programming Languages Supported by Notepad++
- Notepad++ Editor alternatives for Mac OS X
- Add Custom header and footer to Windows Notepad file
- How to un-hide tab bar in notepad++
- Notepad++ is about to exit prompt message
- Launch Notepad++ html document in any web browser
- Word wrap text in Notepad++
- Disable Control Scroll Zoom-in and Zoom-out in Notepad++
- Word count in Notepad++
More Posts:
- Ubuntu zsh: command not found: nano - zsh
- Create Duplicate Line Visual Studio Code (above or below) Example - HowTos
- [Solved] SharePoint Search Internal server error exception - SharePoint
- Android : Class file collision: A resource exists with a different case - Android
- Get the Size of HTTP Response using cURL Command (Content Length) - cURL
- Android Activity Main xml stuck loading - Android-Studio
- Install Docker Desktop on M1/M2 Apple Silicon ARM Chip Mac - Docker
- Go to Line Number option in Windows Notepad - NotepadPlusPlus