C#程序从列表框中删除停用词

时间:2014-08-20 15:28:34

标签: c# list hashtable helpers stop-words

你好,我是C#编程的新手,我尝试编写一些代码来删除保存在列表框中的文本中的停用词,但是当我调试我的程序时,停用词按钮什么都不做 - >这是我如何将文本保存在列表中

private void button5_Click(object sender, EventArgs e)
{

  var r = new StreamReader(textBox1.Text);
    String s;
    Hashtable freq = new Hashtable();
    String[] stop = { "abc", "def", "xyz" };
    while ((s = r.ReadLine()) != null)
    {
        String[] v = s.Split(' ');
        for (int i = 0; i < v.Length; ++i)
        {
            if (freq.ContainsKey(v[i]))
            {
                freq[v[i]] = (int)freq[v[i]] + 1;
            }
            else
            {
                freq[v[i]] = 1;
            }
        }
    }
    r.Close();
    /// write results
    var w = new StreamWriter("richTextBox1", true);
    foreach (String x in freq.Keys)
    {
        if (stop.Contains(x) == false)
        {
            listBox1.Items.Add(x + ": " + freq[x]);
        }
    }
    w.Close();
}

这就是我想从列表中删除停止词的任何帮助请:&#39;(

private void button6_Click(object sender, EventArgs e)
{
    string[] Stop_words = {"a" , "about" , "above" , "after" , "again" , "against" , "all" , "am" , "an,", "and", "any", "are", "aren't", "as", "at", "be", "because", "been", "before", "being", "below", "between", "both", "but", "by", "can't", "cannot", "could", "couldn't", "did", "didn't", "do", "does", "doesn't", "doing", "don't", "down", "during", "each" , "few"
                , "for", "from", "further", "had", "hadn't", "has", "hasn't", "have", "haven't", "having", "he", "he'd", "he'll", "he's", "her", "here", "here's", "hers", "herself", "him", "himself", "his", "how", "how's", "i", "i'd", "i'll", "i'm", "i've", "if", "in", "into", "is", "isn't", "it", "it's", "its", "itself", "let's", "me", "more", "most", "mustn't", "my", "myself", "no", "nor"
                , "not", "of", "off", "on", "once", "only", "or", "other", "ought", "our", "ours"   , "ourselves", "out", "over", "own", "same", "shan't", "she", "she'd", "she'll", "she's", "should", "shouldn't", "so", "some", "such", "than", "that", "that's", "the", "their", "theirs", "them", "themselves", "then", "there", "there's", "these", "they", "they'd", "they'll", "they're", "they've"
                , "this", "those", "through", "to", "too", "under", "until", "up", "very", "was", "wasn't", "we", "we'd", "we'll", "we're", "we've", "were", "weren't", "what", "what's", "when", "when's", "where", "where's", "which", "while", "who", "who's", "whom", "why", "why's", "with", "won't", "would", "wouldn't", "you", "you'd", "you'll", "you're", "you've", "your", "yours", "yourself"
                , "yourselves"};

    var r = new StreamReader(textBox1.Text);
    String s;
    Hashtable bow = new Hashtable();
    while ((s = r.ReadLine()) != null)
    {
        String[] v = s.Split(' ');
        for (int i = 0; i < v.Length; ++i)
        {
            foreach (string q in Stop_words)
            {
                if (bow.ContainsKey(q))
                { bow.Remove(q); }
            }
            foreach (DictionaryEntry de in bow)
            {
                listBox2.Items.Add(de.Key + " : " + de.Value);
            }
        }
    }
}

0 个答案:

没有答案