Reputation: 415
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
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.
Upvotes: 0
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
Reputation: 3625
Try
ctrl + h
Then make sure that regular expression is checked and use
^[a-z]
Upvotes: 0