vb Code:
'Step 1 - copy the original string
Dim newstring As String = originalstring
Dim counter As Integer = 0
'Step 2 - Keep looping through this code until there are no more quote marks found
While counter > -1
counter = newstring.IndexOf("""", counter)
If counter = 0 Then
newstring = newstring.Remove(counter, 1)
ElseIf Not counter = -1 AndAlso Not newstring(counter - 1) = "\" Then
newstring = newstring.Remove(counter, 1)
ElseIf Not counter = -1 AndAlso newstring(counter - 1) = "\" Then
counter += 1
End If
End While
'Step 3 - Show the result
MessageBox.Show(newstring)
This assumes that the variable originalstring contains your string that has the quote marks etc in