zoukankan      html  css  js  c++  java
  • 如何判断字符串是否存在数字

             //isDigit  
                    public static bool isNumberic1(this string _string) 
                    {
                        if (string.IsNullOrEmpty(_string))  
                            return false;        
                        foreach (char c in _string) 
                        {                 
                            if (!char.IsDigit(c))//if(c<'0' || c>'9')//最好的方法,在下面测试数据中再加一个0,然后这种方法效率会搞10毫秒左右   
                                return false;            
                        }           
                        return true;       
                    }         
            //vb isnumberic     
            public static bool isNumberic2(this string _string)  
            {             
                return !string.IsNullOrEmpty(_string) && Microsoft.VisualBasic.Information.IsNumeric(_string);
            }         
            //try parese  
            public static bool isNumberic3(this string _string)  
            {             
                if (string.IsNullOrEmpty(_string)) 
                    return false;    
                int i = 0;           
                return int.TryParse(_string, out i);   
            }       
            //try catch      
            public static bool isNumberic4(this string _string)   
            {            
                if (string.IsNullOrEmpty(_string))  
                    return false;           
                try { int.Parse(_string); }    
                catch { return false; }    
                return true;         }     
            //regex        
            public static bool isNumberic5(this string _string)  
            {            
                return !string.IsNullOrEmpty(_string) && Regex.IsMatch(_string, "^d+$");     
            }     

  • 相关阅读:
    禁止使用U盘和移动硬盘
    Linux下Red5安装和配置
    ORACLE 10g下载地址
    常挂在美国人嘴边的最酷口语
    关于oracle中spfile和pfile的一个实验
    nginx搭建流媒体服务器
    powerDesigner 把name项添加到注释(comment),完美方案!
    memcached全面剖析–PDF总结篇
    PD 导出SQL语句
    本地读取虚拟机系统中的资源
  • 原文地址:https://www.cnblogs.com/meiCode/p/3382498.html
Copyright © 2011-2022 走看看