我的代碼 -如何從字符串中的asp.net替換特殊字符
txtPhoneWork.Text.Replace("-","");
txtPhoneWork.Text.Replace("_", "");
txtMobile.Text.Replace("-", "");
txtMobile.Text.Replace("_", "");
txtPhoneOther.Text.Replace("-", "");
txtPhoneOther.Text.Replace("_", "");
location.ContactWork = txtPhoneWork.Text.Trim();
location.ContactMobile = txtMobile.Text.Trim();
location.ContactOther = txtPhoneOther.Text.Trim();
但不更換和沒有任何方法使兩個-
和_
可以在單一的功能所取代。
由於字符不同,您應該爲代碼定義單獨的函數。如果相同的字符替換意味着您可以具有單個功能 – Dotnet 2010-09-16 11:49:06