I would like a regular expression to match only " that
I guess I need to use lookbehind and lookahead.
So matches the " in
zfgjhsgaf jhsa gd " gjhygf" hgf
But not in
"gjhgjkgjhgjhgkk"
"dfsdfsdf"
For Eclipse, try finding by this regex:
(?<!^\s*)"(?!\s*$)
And replacing with:
\"