I have a string which is as follows:
"simon"
I want to replace/remove the " with a space, so it will give me the following:
simon
However I am having a problem putting the " in the replace function, see code below which gives error:
I am using VB.Net
Thanks in advance
Simon
"simon"
I want to replace/remove the " with a space, so it will give me the following:
simon
However I am having a problem putting the " in the replace function, see code below which gives error:
VB.NET:
line = replace(line,""","")
I am using VB.Net
Thanks in advance
Simon