hi
can anybody please suggest how to remove quotes from a string ,
Printable View
hi
can anybody please suggest how to remove quotes from a string ,
what you mean remove quotes?
Quote:
Originally Posted by JenniferBabe
there is a string containing quotation mark ( " ) how to remove the quotation mark from string . string.replace( ) what parameter should i give for quotation mark
A single quote is \". So the replace string would be "\"".
myString.Replace("\"", string.Empty)
Thanks penagate, thanks for your quick reply, as i was in the client side so i couldnot manage to refer any books or tutorial to check this.
thanks to jmcilhinney also , but i got the hint already.