C# 过滤特殊字符,保留中文,字母,数字,和-

2021-03-30 05:27

阅读:686

标签:inpu   match   name   输入   ret   过滤特殊字符   字符   options   replace   

#region public static string FilterChar(string inputValue) 过滤特殊字符,保留中文,字母,数字,和-
///


/// 过滤特殊字符,保留中文,字母,数字,和-
///

/// 输入字符串
/// 发件和收件详细地址有这种情况:“仓场路40-73号迎园新村四坊69号202室”,这种带有-的特殊字符不需要过滤掉
///
public static string FilterChar(string inputValue)
{
// return Regex.Replace(inputValue, "[`~!@#$^&*()=|{}‘:;‘,\\[\\]./?~!@#¥……&*()—|{}【】;‘’,。/*-+]+", "", RegexOptions.IgnoreCase);
if (Regex.IsMatch(inputValue, "[A-Za-z0-9\u4e00-\u9fa5-]+"))
{
return Regex.Match(inputValue, "[A-Za-z0-9\u4e00-\u9fa5-]+").Value;
}
return "";
}
#endregion

C# 过滤特殊字符,保留中文,字母,数字,和-

标签:inpu   match   name   输入   ret   过滤特殊字符   字符   options   replace   

原文地址:https://www.cnblogs.com/wohexiaocai/p/9283309.html


评论


亲,登录后才可以留言!