Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
b1uec0in authored May 24, 2017
1 parent ee0a974 commit d1f08c0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ dependencies {

### Features
* 앞 글자의 종성(받침) 여부에 따라 조사(은,는,이,가,을,를 등)를 교정합니다.
* 조사로 간주 되기 위해서 반드시 띄어 쓰기가 되어 있어야 합니다.
```java
KoreanUtils.format("%s는", nickName); // 동작 안함.
KoreanUtils.format("%s는 ", nickName); // OK
```
* 한글 뿐만 아니라 영어, 숫자, 한자 등도 처리가 가능합니다.
* 조사 앞에 인용 부호나 괄호가 있어도 동작합니다.
```java
Expand Down

0 comments on commit d1f08c0

Please sign in to comment.