C# 判断字符串是否为数字
Posted Wiiix
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 判断字符串是否为数字相关的知识,希望对你有一定的参考价值。
<pre name="code" class="csharp">
函数:
private bool IsNumeric(string str)
int output;
return int.TryParse(str, out output);
调用例子:
string str="12345";
if (IsNumeric(str))
MessageBox.Show("纯数字");
else
MessageBox.Show("不是纯数字");
以上是关于C# 判断字符串是否为数字的主要内容,如果未能解决你的问题,请参考以下文章