In command line mode, you can use the following command to find each occurrence of " and " (in all lines) and replace them with " :
:%s/[""]/"/g
EDIT:
To do this (suppose the file is open in vim):
1) press the ESC key to make sure that you are in Normal mode.
2) press :, you will notice that : appeared in the field below vim (this is the command line).
3) enter the remainder of the command to search for each occurrence of " and " (in all lines) and replace both with " .
4) press the ENTER key.
5) done! The command line will say something like made 56 substitutions on 13 lines .
source share