onurcano
onurcano

Reputation: 415

Finding lines starting with lowercase letter

I have a long text which has some lines are seperated. How can I find the lines starting with lowercase letters?

Upvotes: 0

Views: 2413

Answers (3)

WilomGfx
WilomGfx

Reputation: 2013

If you hold ctrl + h and you type ^[a-z], it should work, make sure the matches newline option is selected is selected and the regular expression option.

Notepad++ regex helper

Upvotes: 0

Jonathan Lam
Jonathan Lam

Reputation: 17351

Make sure both the "regular expressions" and "match case" options are checked and try this:

\r\n[a-z]

This will search for a carrriage return (new line) followed by a lowercase letter.

Upvotes: 1

iLoveTux
iLoveTux

Reputation: 3625

Try

ctrl + h

Then make sure that regular expression is checked and use

^[a-z]

Upvotes: 0

Related Questions