'특수문자'에 해당되는 글 1건

  1. 2016.05.26 [c#] 정규식(regex) 특수문자 제거
2016. 5. 26. 14:17

c#에서의 정규식

string tmp = System.Text.RegularExpressions.Regex.Replace("abce!@#%123123가나다라", "[^0-9a-zA-Zㄱ-힗]+", "");

Posted by CoolDragon