* 정규식 HTML 제거
String result = Regex.Replace(htmlDocument, @"<[^>]*>", String.Empty);
Regex regex = new Regex(@"</?\w+((\s+\w+(\s*=\s*(?:"".*?""|'.*?'|[^'"">\s]+))?)+\s*|\s*)/?>", RegexOptions.Singleline);
* 정규식 HTML 제거 DLL
http://htmlagilitypack.codeplex.com/
* 한글 2Byte, 영문 1Byte
http://blog.naver.com/myheredity/130076330924
* HTML 디코드
HttpUtility.HtmlDecode
* 한글 2Byte로 계산하여 자르기
http://grad.egloos.com/878185
* C# 윈도우즈의 폴더 경로 가져오기
http://funnism.com/12