2013-04-10 77 views
-1

我要全部更換」和」從字符串全部替換「和「從字符串

如串

"23423dfd 
"'43535fdgd 
""'4353fg 
""'''3453ere 

結果應該是

23423dfd 
43535fdgd 
4353fg 
3453ere 

我想這myString.Replace("'",string.Empty).Replace('"',string.Empty);但它沒有給我正確的結果。

+4

你嘗試[與string.replace(http://msdn.microsoft。 com/en-us/library/system.string.replace.aspx)? – Habib 2013-04-10 12:35:40

+0

@Habib:是的,我嘗試過,「\」就是我想要的 – 2013-04-10 12:38:16

+0

你應該發佈你嘗試過的東西,以及你在哪裏被困在 – Habib 2013-04-10 12:38:58

回答

3

使用String.Replace

mystring = mystring.Replace("\"", string.Empty).Replace("'", string.Empty) 
1

做兩個替代對象:

s = s.Replace("'", "").Replace("\"", ""); 
1

試試這個:

string s = yoursting.Replace("\"", string.Empty).Replace("'", string.Empty);