C# 删除字符串中除字母和数字之外的其它字符,C#将字符串中的大写转小写,小写转大写
private static string RemoveNotLetter(string title) { var listSign = new List { "|", "'", ",", "&", ".", "!" }; var notLetter = Regex.Split(title, @"[a-zA-Z]/[0-9]", Re
转载
2014-04-21 17:11:30 ·
8150 阅读 ·
0 评论