Unity/memo

[c#] 문자열에서 더블쿼티션 제거하기

devmae 2014. 7. 2. 10:22

string str;    //문자열.

str = str.Contains("\"") ? str.Replace("\"", "") : str;