检查字符串是否为数字

检查字符串是否为数字

本文介绍了在c#.net中检查字符串是否为数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有工作isnumeric函数。

告诉我用哪个函数检查字符串是否为数字

THERE IS not work isnumeric function.
tell me which function i use to check the string is numeric or not

推荐答案



int result;
if (int.TryParse(myString, out result))
{
    //ok, do something
}
else
{
    //not an int
}


这篇关于在c#.net中检查字符串是否为数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 23:25