码迷,mamicode.com
首页 > 其他好文 > 详细

去除特殊字符

时间:2020-04-30 15:10:50      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:move   turn   特殊字符   ati   处理   amp   ace   hellip   stat   

/// <summary>
/// 去除特殊字符
/// </summary>
/// <param name="str">待处理的字符串</param>
/// <returns></returns>
public static string RemoveSpecialChar(string str)
{
  return Regex.Replace(str, "[\\[\\]\\^\\-_*×――(^)$%~!@#$…&%¥—+=<>" +
    "|{}!!???::•`·、。,;,.;\"‘’‘-]", "");
}

去除特殊字符

标签:move   turn   特殊字符   ati   处理   amp   ace   hellip   stat   

原文地址:https://www.cnblogs.com/cnyg/p/12808843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!