■ Regex 클래스의 Replace 메소드를 사용해 숫자 문자가 아닌 경우 제거하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 |
string source = "01234A567890."; Regex regex = new Regex(@"[^\d]"); string target = regex.Replace(source, string.Empty); Console.WriteLine(source); Console.WriteLine(target); |