cjieba icon indicating copy to clipboard operation
cjieba copied to clipboard

CppJieba的C语言api

Results 3 cjieba issues
Sort by recently updated
recently updated
newest added

请问cjieba在vs2019下怎么配置才能使用呢?我在项目属性的include选项中包含了lib和deps文件夹。但是依然提示无法打开源文件“lib/jieba.h”

代码如下,主要是调用了x->extractor.Extract,不知这种写法是否妥当。 ` CJiebaWord* ExtractWithoutTags(Jieba handle, const char* sentence, size_t len, const char* tagname, size_t topn) { cppjieba::Jieba* x = (cppjieba::Jieba*)handle; vector words; string wordtag, tagstring; tagstring = tagname; tagstring =...

请问有预编译好的DLL下载吗?我想在Delphi里面调用。谢谢。