我有一個名爲post summary的頁面。 在這個頁面下,我想統計單詞總數和唯一單詞總數。 我成功地計算了帖子中單詞的總數。 但是,我不知道如何計算獨特的單詞。計算字符串中的唯一字
例如:「我今天非常喜歡上學。」
預期輸出:
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();
}
}
}
你是怎麼從「今天我非常喜歡學校」獲得5個獨特的字數? –
我認爲他的意思是獨特的字母 – Zaki
@Sam如果他的意思是字母,它會超過5 –