這篇文章主要介紹了C#基於正規表達式刪除字串中數字或非數字的方法,涉及C#針對數字的簡單正則匹配相關操作技巧,需要的朋友可以參考下
本文實例講述了C#基於正則表達式刪除字符串中數字或非數字的方法。分享給大家參考,具體如下:
/// 去掉字符串中的数字 public static string RemoveNumber(string key) { return Regex.Replace(key, @"\d", ""); } //去掉字符串中的非数字 public static string RemoveNotNumber(string key) { return Regex.Replace(key, @"[^\d]*", ""); }
以上是C#基於正規表示式如何刪除字串中數字或非數字的方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!