Skip to content

Instantly share code, notes, and snippets.

View claudianus's full-sized avatar
🏠
Working from home

ryan.h.park claudianus

🏠
Working from home
  • Modumaru
  • South Korea
View GitHub Profile
@claudianus
claudianus / a.vb
Created November 25, 2018 13:16
vb.net 단어 갯수 새기
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)