[C#] 숫자만 추출

C# 2013. 2. 2. 16:19

숫자만 추출할때 쓰면 된다.

using System.Text.RegularExpressions;

위의 네임스페이스를 추가해주어야 한다.



string strText = "abc1234567ㅏㅣ"

string strNum = "";

strNum = Regex.Replace(strText, @"\D", "");

이렇게 하면 숫자만 추출된다.

닷넷 정규식에서 \d는 숫자. \D는 숫자가 아닌 문자를 의미합니다.





[출처] C# 숫자만 추출|작성자 sacomdalky

http://blog.naver.com/sacomdalky/30117166255

Posted by 요지
,