Pinned Loading
-
sami-parser
sami-parser PublicJavaScript SAMI(Synchronized Accessible Media Interchange) parser for nodejs.
-
한글 은/는, 이/가 (Powered by ActiveSuppor...
한글 은/는, 이/가 (Powered by ActiveSupport::Multibyte::Chars) 1# require 'active_support/all'
2def korean_topic_marker(str)
3k = str[-1] # last one char
4return '는' if k.mb_chars.decompose.size < 3 # 종성이 없는 경우
5return '은'
-
한글 초성 분리기
한글 초성 분리기 1# 삼성전자 => ㅅㅅㅈㅈ, 유안타제3호스팩 => ㅇㅇㅌㅈ3ㅎㅅㅍ
2def extract_korean_initials(keyword)
3initials = ['ㄱ', 'ㄲ', 'ㄴ', 'ㄷ', 'ㄸ', 'ㄹ', 'ㅁ', 'ㅂ', 'ㅃ', 'ㅅ', 'ㅆ', 'ㅇ', 'ㅈ', 'ㅉ', 'ㅊ', 'ㅋ', 'ㅌ', 'ㅍ', 'ㅎ']
45 -
Git-mv-singularize
Git-mv-singularize 1# Get the original name and the singularized name
2original_name="$1"
3singularized_name=$(singularize "$original_name")
45# Compare the original name and the singularized name
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.