vim - how to find lines with specified amount of specified characters -


I have a 100k line file and in some lines apostrophe is unsecured, like:

  "Louis" number 4 "  

I want to:

 " \ "Louis \" number 4 "  

How can I get all the lines with more than 2 " character, is it possible that they do it easily in Veem? Otherwise this simple script is for the job.

If you type these lines Jana want you can search as follows:

  /.* ". * ". *". *   

Where . * will match zero or more characters and " is being searched for you. / P>

First and last . * Pattern strictly required But they ensure that when a search is found, then the full line gets highlighted.

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -