/// <summary>
/// Delete special symbol
/// </summary>
/// <param></param>
/// <returns></returns>
public string DelQuota(string str)
{
string result = str;
string[] strQuota ={ "~", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "`", ";", "'", ",", ".", "/", ":", "/,", "<", ">", "?" };
for (int i = 0; i < strQuota.Length; i++)
{
if (result.IndexOf(strQuota[i]) > -1)
result = result.Replace(strQuota[i], "");
}
return result;
}
C#中将DataTable中数据导出到csv文件中(2)
内容版权声明:除非注明,否则皆为本站原创文章。