文档手册

中文分词

2024-06-16 11:18:23
// 分词
func fenci(str string) string {
   opt := jj.NewOpt()
   opt.IsPost = true
   opt.Formdata["ci"] = str
   res := jj.Get(fenciServer, opt)
   return res.Html
}