This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Module Module1 | |
| Sub Main() | |
| Const source = "테스트1,테스트1,테스트2,테스트1,테스트3,테스트2,테스트3,테스트1,테스트2,테스트3,테스트4" | |
| '단어 파싱 | |
| dim arr = Split(source, ",") | |
| '갯수 저장용 딕셔너리 | |
| Dim dic as new Dictionary(Of String, Integer) |
NewerOlder