asp.net 验证字符串是否为纯数字检测函数

时间:2021-10-17 11:28:21
代码如下:

#region 判断是否为数字的方法 
public bool isnumeric(string str) 

char[] ch=new char[str.Length]; 
ch=str.ToCharArray(); 
for(int i=0;i<ch.Length;i++) 

if(ch[i]<48 || ch[i]>57) 
return false; 

return true; 

#endregion