■ Regex 클래스의 Matches 메소드를 사용해 특정 문자열을 찾는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
using System; using System.Collections.Generic; using System.Drawing; using System.Text.RegularExpressions; using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 키워드 리스트 딕셔너리 /// </summary> KeywordListDictionary keywordListDictionary = null; /// <summary> /// 키워드 리스트 /// </summary> /// <remarks>키워드 리스트 박스 데이터를 표시합니다.</remarks> KeywordList keywordList = null; /// <summary> /// 이전 키워드 /// </summary> private Keyword currentKeyword = null; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.textRichTextBox.Text = @" using System.Collections.Generic; /// <summary> /// 문자열 길이 비교자 /// </summary> public class StringLengthComparer : IComparer<string> { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 비교하기 - Compare(source1, source2) /// <summary> /// 비교하기 /// </summary> /// <param name=""source1"">소스 문자열 1</param> /// <param name=""source2"">소스 문자열 2</param> /// <returns>비교 결과</returns> public int Compare(string source1, string source2) { if(source1.Length == source2.Length) { return 0; } else if(source1.Length > source2.Length) { return 1; } else { return -1; } } #endregion } "; #region 이벤트를 설정한다. this.searchButton.Click += searchButton_Click; this.keywordListBox.SelectedIndexChanged += keywordListBox_SelectedIndexChanged; this.deleteItemButton.Click += deleteItemButton_Click; #endregion } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 조회 버튼 클릭시 처리하기 - searchButton_Click(sender, e) /// <summary> /// 조회 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void searchButton_Click(object sender, EventArgs e) { #region 정규식을 구한다. string regularExpression = this.regularExpressionTextBox.Text.Trim(); if(string.IsNullOrEmpty(regularExpression)) { MessageBox.Show(this, "정규식을 입력해 주시기 바랍니다.", "INFORMATION", MessageBoxButtons.OK, MessageBoxIcon.Information); this.regularExpressionTextBox.Focus(); return; } #endregion #region 텍스트를 구한다. string text = this.textRichTextBox.Text.Trim(); if(string.IsNullOrEmpty(text)) { MessageBox.Show(this, "텍스트를 입력해 주시기 바랍니다.", "INFORMATION", MessageBoxButtons.OK, MessageBoxIcon.Information); this.textRichTextBox.Focus(); return; } #endregion #region 텍스트 리치 텍스트 박스 데이터 스타일을 지운다. this.textRichTextBox.SelectAll(); this.textRichTextBox.SelectionFont = this.textRichTextBox.Font; this.textRichTextBox.SelectionColor = this.textRichTextBox.ForeColor; this.textRichTextBox.SelectionBackColor = this.textRichTextBox.BackColor; this.textRichTextBox.Select(0, 0); #endregion #region 키워드 리스트 딕셔너리를 설정한다. if(this.keywordListDictionary != null) { this.keywordListDictionary.ClearData(); } this.keywordListDictionary = GetKeywordListDictionary(regularExpression, text); #endregion #region 키워드 리스트 박스 데이터를 지운다. this.keywordListBox.Items.Clear(); #endregion #region 키워드 리스트를 설정한다. if(this.keywordList != null) { this.keywordList.Clear(); } this.keywordList = GetKeywordList(this.keywordListDictionary); #endregion #region 키워드 리스트 박스 데이터를 추가한다. foreach(Keyword keyword in this.keywordList) { this.keywordListBox.Items.Add(keyword); } #endregion #region 텍스트 리치 텍스트 박스에서 해당 단어를 표시한다. foreach(KeyValuePair<string, KeywordList> keyValuePair in this.keywordListDictionary) { KeywordList keywordList = keyValuePair.Value; foreach(Keyword keyword in keywordList) { this.textRichTextBox.Select(keyword.Index, keyword.Length); this.textRichTextBox.SelectionColor = Color.Red; this.textRichTextBox.SelectionBackColor = Color.Yellow; } } #endregion } #endregion #region 키워드 리스트 박스 선택 인덱스 변경시 처리하기 - keywordListBox_SelectedIndexChanged(sender, e) /// <summary> /// 키워드 리스트 박스 선택 인덱스 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void keywordListBox_SelectedIndexChanged(object sender, EventArgs e) { if(this.currentKeyword != null) { this.textRichTextBox.Select(this.currentKeyword.Index, this.currentKeyword.Length); this.textRichTextBox.SelectionFont = this.textRichTextBox.Font; } if(this.keywordListBox.SelectedIndex == -1) { this.currentKeyword = null; } else { Keyword keyword = this.keywordListBox.SelectedItem as Keyword; this.textRichTextBox.Select(keyword.Index, keyword.Length); this.textRichTextBox.SelectionFont = new Font(this.textRichTextBox.Font, FontStyle.Bold); this.currentKeyword = keyword; } } #endregion #region 항목 삭제 버튼 클릭시 처리하기 - deleteItemButton_Click(sender, e) /// <summary> /// 항목 삭제 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void deleteItemButton_Click(object sender, EventArgs e) { if(this.keywordListBox.SelectedIndex == -1) { return; } Keyword keyword = this.keywordListBox.Items[this.keywordListBox.SelectedIndex] as Keyword; this.textRichTextBox.Select(keyword.Index, keyword.Length); this.textRichTextBox.SelectionColor = this.textRichTextBox.ForeColor; this.textRichTextBox.SelectionBackColor = this.textRichTextBox.BackColor; this.keywordListBox.Items.RemoveAt(this.keywordListBox.SelectedIndex); this.keywordList.Remove(keyword); this.keywordListDictionary.RemoveItem(keyword); } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 키워드 리스트 딕셔너리 구하기 - GetKeywordListDictionary(regularExpression, text) /// <summary> /// 키워드 리스트 딕셔너리 구하기 /// </summary> /// <param name="regularExpression">정규식</param> /// <param name="text">텍스트</param> private KeywordListDictionary GetKeywordListDictionary(string regularExpression, string text) { KeywordListDictionary dictionary = new KeywordListDictionary(); Regex regex = new Regex(regularExpression); MatchCollection matchCollection = regex.Matches(text); foreach(Match match in matchCollection) { Keyword keyword = new Keyword(match); dictionary.AddItem(keyword); } return dictionary; } #endregion #region 키워드 리스트 구하기 - GetKeywordList(dictionary) /// <summary> /// 키워드 리스트 구하기 /// </summary> /// <param name="dictionary">딕셔너리</param> /// <returns>키워드 리스트</returns> private KeywordList GetKeywordList(KeywordListDictionary dictionary) { KeywordList targetList = new KeywordList(); foreach(KeyValuePair<string, KeywordList> keyValuePair in dictionary) { KeywordList keywordList = keyValuePair.Value; foreach(Keyword keyword in keywordList) { targetList.Add(keyword); } } return targetList; } #endregion #region 키워드 리스트 박스 데이터 지우기 - ClearKeywordListBoxData() /// <summary> /// 키워드 리스트 박스 데이터 지우기 /// </summary> private void ClearKeywordListBoxData() { this.keywordListBox.Items.Clear(); } #endregion } } |