首页 > 编程 > .NET > 正文

ASP.NET技巧:正则表达式提取数字

2024-07-10 13:09:18
字体:
来源:转载
供稿:网友
/// <summary>
  /// 获取字符串中的数字
  /// </summary>
  /// <param name="par"></param>
  /// <returns></returns>
  private int getnumber(string par)
  {
   string strtempcontent =par;
   strtempcontent = system.text.regularexpressions.regex.replace(strtempcontent, @"[^/d]*", "");
   return convert.toint32(strtempcontent);
  },欢迎访问网页设计爱好者web开发。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表