Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 6 years ago.
Is there's a way to bookmark all lines that are over a certain length in Notepad++?
For example, I'm trying to bookmark all lines that have over 15 characters.
There is an easy way to perform this.
Go to Search > Find... > Select the Mark Tab. Make sure you have Regular expression checked under the Search Mode box and make sure you check the Bookmark Line box.
You want to search for the following, still being under the Mark tab.
Find what: ^.{15,}
Finally, click Mark All which bookmarks the lines that have 15
characters or more.
Example:
You mean something like this?
.{15}
Or mark all the lines, if longer than 15 characters:
.{15,}