I know how to use VI to find lines longer than a certain number of characters:
/\%>80v.\+
But how do I search for lines shorter than a certain number of characters?
Use
/^.\{,25}$/
to find lines shorter than 25 characters.