How to find lines with 3 or more spaces in Notepad++

- Open the file in which you want to find lines with 3 or more spaces.
- Go to the Search menu.
- Select Find... or press Ctrl+F.
- In the Find field, enter the following regular expression:
\s{3,}
Example of using regular expressions
- The regular expression \s{3,} means:
- \s - matches any whitespace character (space, tab, etc.).
- {3,} - means there should be at least 3 such characters in a row.
Bookmarking found lines
- Go to the Search menu and select Mark... or press Ctrl+M.
- In the Mark window, in the Find field, enter the regular expression:
\s{3,}
Using this article, you can effectively search for and bookmark lines with 3 or more spaces in Notepad++.