首页 > 编程 > C# > 正文

C#基于正则表达式删除字符串中数字或非数字的方法

2019-10-29 21:10:03
字体:
来源:转载
供稿:网友

本文实例讲述了C#基于正则表达式删除字符串中数字或非数字的方法。分享给大家供大家参考,具体如下:

/// 去掉字符串中的数字public static string RemoveNumber(string key){  return Regex.Replace(key, @"/d", "");}//去掉字符串中的非数字public static string RemoveNotNumber(string key){  return Regex.Replace(key, @"[^/d]*", "");}

希望本文所述对大家C#程序设计有所帮助。


注:相关教程知识阅读请移步到c#教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表