/// HTML 요소에서 모든 태그를 제거합니다 public static string Striphtml (String strhtml) { 문자열 stroutput = strhtml; regex regex = new regex (@"<[^>]+> | </[^>]+>"); Stroutput = regex.replace (Stroutput, ""); 리턴 스트라우팅; }