盘古分词
Posted qwer1258
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了盘古分词相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using PanGu; namespace WindowsFormsApp6 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Segment.Init();//初始化 string str = textBox1.Text; Segment segment = new Segment(); ICollection<WordInfo> words = segment.DoSegment(str); foreach (WordInfo item in words) { textBox2.Text += item.Word + ","; } textBox2.Text = textBox2.Text.TrimEnd(‘,‘); } } }
以上是关于盘古分词的主要内容,如果未能解决你的问题,请参考以下文章