在C#.net中使用正则表达式检验输入是否为数字

类别:Java 点击:0 评论:0 推荐:

直接调用以下函数进行检验,返回值为true表示输入是数字,反之不是。
itemValue为输入的值。

using System.Text.RegularExpressions;

  private static bool IsNumeric(string itemValue)
  {
   return (IsRegEx("^(-?[0-9]*[.]*[0-9]{0,3})$", itemValue));
  } 

  private static bool IsRegEx(string regExValue, string itemValue)
  {

   try
   {
    Regex regex = new System.Text.RegularExpressions.Regex(regExValue);
    if (regex.IsMatch(itemValue)) return true;
    else                          return false;
   }
   catch (Exception )
   {
    return false;
   }
   finally
   {
   }
  } 

本文地址:http://com.8s8s.com/it/it15258.htm