Pullword 中文分词
- 安装
npm install pullword
- 使用
var defaultOptions = {
url: 'http://api.pullword.com/post.php', /* api url */
threshold: 0.5, /* must be [0-1] */
debug: 0, /* debug=1, debug mode in on(show all probabilities of each word) */
array: 1 /* array=0, return raw-string */
};
var api = require('pullword')(defaultOptions);
api.pullword('老板来碗牛肉面,不要香菜。', function (err, result) {
console.log(result);
});
// ['老板', '牛肉', '牛肉面', '不要', '香菜']
- 结巴中文分词网址:https://github.com/fxsjy/jieba
- Node.JS 中文分词模块: https://blog.csdn.net/marujunyy/article/details/8466297
- JavaScript: 实现简单的中文分词 : https://my.oschina.net/goal/blog/201674