Seg-zhCN is a simplified Chinese segmentation method.
License: This project is under GPL/BSD
Seg-zhCN focus on:
- simple
- fast
- split statement into pieces
Seg-zhCN don't care about:
- 100% accuracy
- non simplified Chinese part
- grammar
npm install seg-zhcn
// require
var seg = require('seg-zhcn');
// statement
var s = "我是中国人";
// get info
var info = seg.parse(s);
console.log(info.cjkInfo);
console.log(info.segInfo);
console.log(info.segment()); // 我 是 中国 人
// merge all steps into one step
console.log(seg.split(s));
You could contact me through [email protected] for this extension. Or for programming related things, whatever.
This guy currently works in Wiredcraft.com. So you could also get him by [email protected]
All rights reserved.