C#判断一个String是否为数字类型
方案一:try...catch(执行效率不高)
{
try
{
int var1=convert.toint32 (otext);
return true;
}
catch
{
return false;
}
}
方案二:正则表达式(推荐)
a)
{
return regex.ismatch(value, @"^[+-]?/d*[.]?/d*$");
}
public static bool isint(string value)
{
return regex.ismatch(value, @"^[+-]?/d*$");
}
public static bool isunsign(string value)
{
return regex.ismatch(value, @"^/d*[.]?/d*$");
}
b)
using system.text.regularexpressions;
public bool isnumber(string strnumber)
{
regex objnotnumberpattern=new regex("[^0-9.-]");
regex objtwodotpattern=new regex("[0-9]*[.][0-9]*[.][0-9]*");
regex objtwominuspattern=new regex("[0-9]*[-][0-9]*[-][0-9]*");
string strvalidrealpattern="^([-]|[.]|[-.]|[0-9])[0-9]*[.]*[0-9]+$";
string strvalidintegerpattern="^([-]|[0-9])[0-9]*$";
regex objnumberpattern =new regex("(" + strvalidrealpattern +")|(" + strvalidintegerpattern + ")");
return !objnotnumberpattern.ismatch(strnumber) &&
!objtwodotpattern.ismatch(strnumber) &&
!objtwominuspattern.ismatch(strnumber) &&
objnumberpattern.ismatch(strnumber);
}
方案三:遍历
a)
{
char[] ch=new char[str.length];
ch=str.tochararray();
for(int i=0;i {
if(ch[i]<48 || ch[i]>57)
return false;
}
return true;
}
b)
bool bolresult=true;
if(strin=="") {
bolresult=false;
}
else {
foreach(char char in strin) {
if(char.isnumber(char))
continue;
else {
bolresult=false;
break;
}
}
}
return bolresult;
}
c)
{
instring = instring.trim();
bool havenumber = false;
bool havedot = false;
for (int i = 0; i < instring.length; i++)
{
if (char.isnumber(instring[i]))
{
havenumber = true;
}
else if (instring[i] == '.')
{
if (havedot)
{
return false;
}
else
{
havedot = true;
}
}
else if (i == 0)
{
if (instring[i] != '+' && instring[i] != '-')
{
return false;
}
}
else
{
return false;
}
if (i > 20)
{
return false;
}
}
return havenumber;
}
方案四:改写vb的isnumeric源代码(执行效率不高)
public static bool isnumeric(object expression)
{
bool flag1;
iconvertible convertible1 = null;
if (expression is iconvertible)
{
convertible1 = (iconvertible) expression;
}
if (convertible1 == null)
{
if (expression is char[])
{
expression = new string((char[]) expression);
}
else
{
return false;
}
}
typecode code1 = convertible1.gettypecode();
if ((code1 != typecode.string) && (code1 != typecode.char))
{
return utils.isnumerictypecode(code1);
}
string text1 = convertible1.tostring(null);
try
{
long num2;
if (!stringtype.ishexoroctvalue(text1, ref num2))
{
double num1;
return doubletype.tryparse(text1, ref num1);
}
flag1 = true;
}
catch (exception)
{
flag1 = false;
}
return flag1;
}//子函数
// return utils.isnumerictypecode(code1);
internal static bool isnumerictypecode(typecode typcode)
{
switch (typcode)
{
case typecode.boolean:
case typecode.byte:
case typecode.int16:
case typecode.int32:
case typecode.int64:
case typecode.single:
case typecode.double:
case typecode.decimal:
{
return true;
}
case typecode.char:
case typecode.sbyte:
case typecode.uint16:
case typecode.uint32:
case typecode.uint64:
{
break;
}
}
return false;
}
//-----------------
//stringtype.ishexoroctvalue(text1, ref num2))
internal static bool ishexoroctvalue(string value, ref long i64value)
{
int num1;
int num2 = value.length;
while (num1 < num2)
{
char ch1 = value[num1];
if (ch1 == '&')
{
ch1 = char.tolower(value[num1 + 1], cultureinfo.invariantculture);
string text1 = stringtype.tohalfwidthnumbers(value.substring(num1 + 2));
if (ch1 == 'h')
{
i64value = convert.toint64(text1, 0x10);
}
else if (ch1 == 'o')
{
i64value = convert.toint64(text1, 8);
}
else
{
throw new formatexception();
}
return true;
}
if ((ch1 != ' ') && (ch1 != '/u3000'))
{
return false;
}
num1++;
}
return false;
}
//----------------------------------------------------
// doubletype.tryparse(text1, ref num1);
internal static bool tryparse(string value, ref double result)
{
bool flag1;
cultureinfo info1 = utils.getcultureinfo();
numberformatinfo info3 = info1.numberformat;
numberformatinfo info2 = decimaltype.getnormalizednumberformat(info3);
value = stringtype.tohalfwidthnumbers(value, info1);
if (info3 == info2)
{
return double.tryparse(value, numberstyles.any, info2, out result);
}
try
{
result = double.parse(value, numberstyles.any, info2);
flag1 = true;
}
catch (formatexception)
{
flag1 = double.tryparse(value, numberstyles.any, info3, out result);
}
catch (exception)
{
flag1 = false;
}
return flag1;
}
方案五:直接引用vb运行库(执行效率不高)
方法:首先需要添加visualbasic.runtime的引用
代码中using microsoft.visualbasic;
程序中用information.isnumeric("ddddd");
以上就是c#判断一个string是否为数字类型的全部内容,推荐大家使用正则表达式的方法,比较简单且效率高。
推荐阅读
-
C#判断一个String是否为数字类型
-
C# 正则判断一个数字的格式是否有逗号的代码
-
C#判断一个矩阵是否为对称矩阵及反称矩阵的方法
-
Excel2007中利用if和mod函数判断一个数字是否为奇偶
-
SQL实用技巧:如何判断一个值是否为数字的方法
-
C#判断一个字符串是否是数字或者含有某个数字
-
asp.net中利用正则表达式判断一个字符串是否为数字的代码
-
JavaScript判断输入是否为数字类型的方法总结
-
C# 正则判断一个数字的格式是否有逗号的代码
-
字符串中找出连续最长的数字串:读入一个字符串str,输出字符串str中的连续最长的数字串;合法括号的判断:给定一个字符串A和其长度n,请返回一个bool值代表它是否为一个合法的括号串(只能由括号组成)