An open API service indexing awesome lists of open source software.

https://github.com/ikegami-yukino/neologdn-java

Japanese text normalizer for mecab-neologd
https://github.com/ikegami-yukino/neologdn-java

java nlp preprocessing text-processing

Last synced: 11 months ago
JSON representation

Japanese text normalizer for mecab-neologd

Awesome Lists containing this project

README

          

# neologdn-java
[![Build Status](https://travis-ci.org/ikegami-yukino/neologdn-java.svg?branch=master)](https://travis-ci.org/ikegami-yukino/neologdn-java)

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

```java
import io.github.ikegamiyukino.neologdn.NeologdNormalizer;

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

## License
Apache Software License.