I am having hundreds of lines as illustrated below, with more than one opening double-quote (“) occurring within almost every line as shown below:
... “ ... “ ..... “ .....
note: those dots (...) above denote both words & spaces in this context for illustrative purposes.
How to search (via regex) for every such occurrence within every line? I tried achieving this with:
“.*“
or,“.* “
but it is disappointingly returning even those who are proper i.e., with both opening & closing double quotes also (which is the correct way it should be) as follows:
... “ ...” ..... “ .....” ...... “ .....
For every second
[space]“
recurring within every line it encounters — How to replace them (via regex) into” [space]
?