Skip to main content

Posts

Showing posts from February, 2016

#40-Five Notepad++ Tricks Every Coder Should Know

In this article, we will share five cool NPP tricks in Q&A format which every coder should know. These tricks can save you hours while coding. We have used NPP version 6.8.8 and TextFX version 0.26 for this post. If you want to hire our company for any project you may contact us . How can I join lines in notepad++? Press Ctrl+A and then press Ctrl+J. How can I delete blank lines in notepad++? First, install TextFX from Plugin Manager. Press Ctrl+A. TextFX, TextFX Edit, Delete Blank Lines. How can I delete the first n characters of every line in notepad++? This question has two solutions. Press Ctrl+H. Use these values. Find what: ^.{n}, Replace with: empty string, Search Mode: Regular expression, Replace All. The second solution has one extra step. Press Ctrl+H. Use these values. Find what: ^.{n}, Replace with: space, Search Mode: Regular expression, Replace All. Edit, Blank Operations, Trim Leading Space. How can I delete the last n characters of every line in notepad++? Pre...