如何从Asp.net中的字符串中查找和提取数字

时间:2013-12-09 04:44:07

标签: c# asp.net

我是asp.net的新手你可以帮助我找到如何从Asp.net中的字符串中查找和提取数字。

2 个答案:

答案 0 :(得分:0)

string output = new string(input.Where(char.IsDigit).ToArray()); 

答案 1 :(得分:0)

方法1:

       String str = "udsdf34dfd78"; /*any string*/
       String strNumber = "";
       Regex regex=new Regex(@"\d");

       foreach (Match m in regex.Matches(str))
           strNumber += m.Value;

方法2:

              String str = "udsdf34dfd78"; /*any string*/
              String strNumber = ""; 
              foreach (Char c in str)
               if (Char.IsDigit(c))
                   strNumber += c.ToString();