Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 654 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 654 Bytes

neologdn-java

Build Status

neologdn is a Japanese text normalizer for mecab-neologd.

The normalization is based on the neologd's rules: https://github.com/neologd/mecab-ipadic-neologd/wiki/Regexp.ja

Contributions are welcome!

Usage

import io.github.ikegamiyukino.neologdn.NeologdNormalizer;


NeologdNormalizer normalizer = new NeologdNormalizer();
String text = "   PRML  副 読 本   ";
normalizer.normalize(text);
// => "PRML副読本"

License

Apache Software License.