码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-09-21 21:23:25      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
  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

 

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

标签:

原文地址:http://www.cnblogs.com/haimingkaifa/p/5894065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!