Skip to content

kimshinelove/choseong-search

Repository files navigation

NPM version Build Status Dependency Status

정규식을 통한 한글 초성 검색 모듈

Install

$ npm install --save choseong-search

Usage

require('choseong-search')(String);

var text = '동해물과 백두산이 마르고 닳도록';

var case1 = text.SearchKor('ㄷㅎㅁㄱ'); // 동해물과
var case2 = text.SearchKor('ㄱ ㅂ'); // 과 백
var case3 = text.SearchKor('ㅂㄷㅅㅇ'); // 백두산이

var case1 = text.SearchKor('해물'); // 해물
var case2 = text.SearchKor('두산'); // 두산
var case3 = text.SearchKor('고'); // 고
var case4 = text.SearchKor('달'); // 닳

var case1 = text.SearchKor('해물ㄱ'); // 해물과
var case2 = text.SearchKor('ㅂ두ㅅㅇ'); // 백두산이
var case3 = text.SearchKor('ㅁㄹ고'); // 마르고
var case4 = text.SearchKor('달ㄷㄹ'); // 닳도록

-----
var text = '대한민국korea';

var case1 = text.SearchKor('ㅁㄱkorea'); // 민국korea
var case2 = text.SearchKor('민국ko'); // 민구ko
var case3 = text.SearchKor('korea'); // korea
var case4 = text.SearchKor('or'); // or

-----
var text = '동해물과 백두산이 마르고 닳도록';

var case1 = text.SearchKor('ㄷㅎㅁㄱ', true); // 동해물과
var case2 = text.SearchKor('ㄱ ㅂ', true); // null
var case3 = text.SearchKor('ㅂㄷㅅㅇ', true); // null

License

MIT © JiTae, Kim

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published