判断字符串中的数字(可以进行演变)

Posted 路上有你F

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断字符串中的数字(可以进行演变)相关的知识,希望对你有一定的参考价值。

技术分享
  static void Main(string[] args)
        {
            Console.WriteLine("请输入一个字符串:");
           string str= Console.ReadLine();
           Console.WriteLine("\n");
           for (int i = 0; i < str.Length; i++)
           {             
               string n=  str.Substring(i, 1);
               bool b =Number.GetNumber(n);
               if (b ==true)
               {
                   //Console.WriteLine(n+",");
                   Console.Write(n+",");
               }
           }         
               Console.ReadKey();
        }
    }
  public   class Number
    {
        public static bool GetNumber(string str)
        {
            bool b = false;
            string[] arryList = { "0","1","2","3","4","5","6","7","8","9"};
            foreach (string item in arryList)
            {
                if (item == str)
                {
                    b = true;
                    break;
                }               
            }
            return b;  
        }
    }
View Code

 

以上是关于判断字符串中的数字(可以进行演变)的主要内容,如果未能解决你的问题,请参考以下文章

postman添加断言

shell中怎么判断输入的是不是是数字?

判断字符串是否为数字

shell怎么对小数进行条件判断?

字符串中数字与整型数字的转化

js验证表单不能填数字怎么判断?