Skip to content

[Java&Android] HangulParser is to parse Hangul to Jaso(basic consonant and vowel) by using Unicode

Notifications You must be signed in to change notification settings

kimkevin/HangulParser

Repository files navigation

HangulParser

[자바 & 안드로이드] HangulParser는 한 글자를 자소(자음과 모음)로 분리하고 자음과 모음을 하나의 글자로 만들 수 있는 Gradle 라이브러리입니다.

[Java & Android] HangulParser is to seperate hangul to basic consonant and vowel by using unicode and also to convert basic consonant and vowel to hangul.

Download

repositories {
  jcenter()
}

dependencies {
  compile 'com.github.kimkevin:hangulparser:1.0.0'
}

Usage

1. 자소 분리(Disassemble)

public List<String> disassemble(char hangul)

  try {
    jasoList = HangulParser.getInstance().disassemble('한');
  } catch (HangulParserException e) {
    e.printStackTrace();
  }
  
  > [, , ]

public List<String> disassemble(String hangul)

  try {
    jasoList = HangulParser.getInstance().disassemble("한글");
  } catch (HangulParserException e) {
    e.printStackTrace();
  }

  > [, , , , , ]

2. 자소 결합(Assemble)

public String assemble(List<String> jasoList)

  jasoList.add("ㅎ");
  jasoList.add("ㅏ");
  jasoList.add("ㄴ");
  jasoList.add("ㄱ");
  jasoList.add("ㅡ");
  jasoList.add("ㄹ");
  try {
    String hangul = HangulParser.getInstance().assemble(jasoList);
  } catch (HangulParserException e) {
    e.printStackTrace();
  }
  
  > 한글

Contributing

All contributions are welcome. Open a Pull Requests or refer to the Issues section.

License

Copyright (c) 2015 "KimKevin" Yongjun Kim

Licensed under the MIT license.

About

[Java&Android] HangulParser is to parse Hangul to Jaso(basic consonant and vowel) by using Unicode

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages