获取字符串中含有的数字

1、 使用正则表达式,得到对应的数字串

             string str = "love23next234csdn3423javaeye";

             //去除字符串中的非字符

            string m = System.Text.RegularExpressions.Regex.Replace(str, @"[^\d]*", "");

            //去除字符串中的数字   

            string y=  System.Text.RegularExpressions.Regex.Replace(str, @"\d", "");
            Console.WriteLine(y);
            Console.ReadLine();


2、使用ASIIC码的特性,得到对应的数字


          // 英文字母A-Z的ASCII码值65-90,a-z的是97-122
            string str = "love23next234csdn3423javaeye";
            List<char> list = str.ToList();
            string result = "";
            for (int i = 0; i < list.Count; i++)
            {
                //if ((list[i] >= 65 && list[i] <= 90) || (list[i] >= 97 && list[i] <= 122))
                //{
                //    result += list[i] + ",";
                //}
                //else
                //{
                //    Console.WriteLine(list[i]);
                //}
                if ((list[i] < 65 || list[i] > 90) && (list[i] < 97 || list[i] > 122))
                {
                    Console.WriteLine(list[i]);
                }
            }
            Console.ReadLine();

你可能感兴趣的:(正则表达式,ASCII)