c# 문자열에서 숫자,문자 추출 Programming/Software 2014. 6. 25. 14:54 [CODE]string a = "aa1234"; string strTemp = Regex.Replace(a, @"\d", "");//문자 추출 Console.WriteLine(strTemp); strTemp = Regex.Replace(a, @"\D", "");//숫자 추출 Console.WriteLine(strTemp);[결과]aa1234 공유하기 게시글 관리 가식적인 놈의 하나뿐인 공간 Posted by appHunter
IE9 이상으로 브라우저를 업그레이드하거나, 크롬, 파이어폭스 등 최신 브라우저를 이용해주세요.