OpenCC github

這是一個OpebSource的中文轉換套件,支援多種語言,node.js也支援了

安裝(node.js版本要在0.10.x)

npm install opencc

使用

var OpenCC = require('opencc');

// 選擇轉換格式(data/config)                                                                                                                                                 var opencc = new OpenCC('zhs2zht.ini');

// Set conversion mode
opencc.setConversionMode(OpenCC.CONVERSION_FAST);

// Sync API
var converted = opencc.convertSync("优先");
console.log(converted);

// Async API
opencc.convert("优先", function (err, converted) {                                                                                                                             console.log(converted);
});
Categories: Node.js