I guess this is more of a regex in general problem then vb.net...anyways.

I am trying to think of a regex replace to replace double quotes with nothing. Example:

hello("hi there") would become hello(hi there)
"hi" would become hi
"example \"3" would become example \"3

-edit
Maybe an easier way to explain this is, replace all " that do not have a backslash before them.