可以通过遍历字符串中的每一个字符来判断这个字符串中是不是有数字
例- string str = "adf123";
- for (int i = 0; i < str.Length; i++)
- {
- try
- {
- int n = Convert.ToInt32(str[i].ToString());//str[i]是字符类型,需要转换成字符串类型
- Console.WriteLine("字符串{0}中有数字{1}", str, str[i]);
- }
- catch
- {
- }
- }
- Console.ReadKey();
复制代码 |