using System.Text.RegularExpressions;
//判断是否为数字
public static bool StrIsInt(string Str)
{
if (Regex.IsMatch(Str, @"^[0-9]+(.[0-9]*)?$"))
{
//是数字
return true;
}
else
{
//不是数字
return false;
}
}
//判断是否为数字
public static bool StrIsInt(string Str)
{
if (Regex.IsMatch(Str, @"^[0-9]+(.[0-9]*)?$"))
{
//是数字
return true;
}
else
{
//不是数字
return false;
}
}