投稿概要というページがあります。このページの下で、単語の総数と一意の単語の総数を数えたいと思います。投稿の総単語数をうまく数えることができました。しかし、ユニークワードの数え方がわかりません。
例:「今日の学校はとても楽しかったです。」
期待される出力:
Total word count: 6
Unique word count: 5
これが私の現在のコードです:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace empTRUST
{
public partial class PostSummary : Form
{
string target_fbid;
string fbStatus;
public PostSummary(string target_fbid, string fbStatus)
{
InitializeComponent();
this.target_fbid = target_fbid;
this.fbStatus = fbStatus;
}
private void PostSummary_Load(object sender, EventArgs e)
{
label_totalwordcount.Text = fbStatus.Split(new char[] {' '}, StringSplitOptions.RemoveEmptyEntries).Length.ToString();
}
}
}