Wildcard to find a line with more than 35 characters

  • Thread starter Thread starter Evi
  • Start date Start date
E

Evi

I have some lines of poetry.
I want to find those lines which are more than 35 characters long.
If I use the wildcard search
?{35}
It selects a block of text 35 characters long but does not care if this is
several lines of text.

I need to select 35 characters which don't contain a paragraph mark but will
contain spaces.
Any ideas?
Evi
 
Larry, you are a star! Thank you.
Evi
Larry said:
This will help get you started. Look for this:

^13[!^13]{36,}

Larry



Evi said:
I have some lines of poetry.
I want to find those lines which are more than 35 characters long.
If I use the wildcard search
?{35}
It selects a block of text 35 characters long but does not care if this is
several lines of text.

I need to select 35 characters which don't contain a paragraph mark but will
contain spaces.
Any ideas?
Evi
 
Back
Top