How to use VI to search for lines less than a certain length? -


i know how use vi find lines longer number of characters:

/\%>80v.\+ 

but how search lines shorter number of characters?

use

/^.\{,25}$/ 

to find lines shorter 25 characters.


Comments

Popular posts from this blog

c++ - error: use of deleted function -

Cursor error with postgresql, pgpool and php -

iphone - Request for member 'uitextfield' in something not a structure or union? -