tags:

views:

46

answers:

1

in vb.net how can i use replace function when the replace from part has double quotes in its value ?

+1  A: 
Dim s As String = String.Replace("some string", "some "" string with quotes")
Joel Coehoorn