1

目标是对文本(即语音)进行排序,并将语音中不同单词的列表输出到文本框。我已经阅读了板上的很多提示并玩了很多,但此时我比开始时更加困惑。这是我的代码

   private void GenerateList(string[] wordlist)
    {
       List<string> wordList = new List<string>();

        for (int i = 0; i < wordlist.Length; i++)
        {
            wordList.Add(wordlist[i]);
        }

        var uniqueStr = from item in wordList.Distinct().ToList()
                        orderby item
                        select item;


        for (int i = 0; i < uniqueStr.Count(); i++ )
        {
            txtOutput.Text = uniqueStr.ElementAt(i) + "\n";
        }

    }

在这一点上,我得到了一个字的回报。对于我使用的文本(葛底斯堡地址),它是“年”这个词,它是文本中该词的唯一实例。

我将函数传递给加载到字符串数组中的每个单词,然后将其放入列表中(这可能是多余的?)。

4

4 回答 4

1

我希望这能以简单有效的方式满足您的需求(使用 LINQPad 中的 .Dump() )

void Main()
{
    // can be any IEnumerable<string> including string[]
    var words = new List<string>{"one", "two", "four", "three", "four", "a", "z"};

    words.ToDistinctList().Dump();

    // you would use txtOutput.Text = words.ToDistinctList()
}

static class StringHelpers
{
    public static string ToDistinctList(this IEnumerable<string> words)
    {
        return string.Join("\n", new SortedSet<string>(words));
    }
}
于 2013-02-23T19:34:59.383 回答
0

关于您的问题的一些提示:

  • 没有理由把数组变成list,因为LINQ扩展方法是定义在IEnumerable<T>的,数组和list都实现了
  • 确保所有字母的大小写相同 - 例如,使用 ToLower
  • 您在每次迭代中都覆盖 txtOutput.Text。不要设置新值,而是将新部分附加到现有值

这是产生您想要的输出的简单代码:

IEnumerable<string> distinct =
    wordList
    .Select(word => word.ToLower())
    .Distinct()
    .OrderBy(word => word);

txtOutput.Text = string.Join("\n", distinct.ToArray());

在相关说明中,这是一个非常简单的 LINQ 表达式,它从文本中返回不同的单词,其中整个文本被指定为一个字符串:

public static IEnumerable<string> SplitIntoWords(this string text)
{

    string pattern = @"\b[\p{L}]+\b";

    return
        Regex.Matches(text, pattern)
            .Cast<Match>()                          // Extract matches
            .Select(match => match.Value.ToLower()) // Change to same case
            .Distinct();                            // Remove duplicates

}

您可以在此处找到针对同一问题的更多正则表达式模式变体:Regex and LINQ Query to Split Text into Distinct Words

于 2015-06-08T09:27:49.343 回答
-1

您可以使用StringBuilder该类具有流畅接口以及 LINQ 的事实来大大简化这一点。

首先,您可以创建StringBuilder并将所有单词连接到同一个实例中,如下所示:

// The builder.
var builder = new StringBuilder();

// A copy of the builder *reference*.
var builderCopy = builder;

// Get the distinct list, order by the string.
builder = wordList
    // Get the distinct elements.
    .Distinct()
    // Order the words.
    .OrderBy(w => w).
    // Append the builder.
    Select(w => builderCopy.AppendLine(word)).
    // Get the last or default element, this will
    // cycle through all of the elements.
    LastOrDefault();

// If the builder is not null, then assign to the output, otherwise,
// assign null.
txtOutput.Text = builder == null ? null : builder.ToString();

请注意,您不必实际具体化列表,因为wordList已经是一个具体化列表,它是一个数组(作为旁注,C# 中的类型化数组实现了IList<T>接口)。

AppendLine方法(以及 上的大多数方法StringBuilder)返回执行操作的实例StringBuilder,这就是LastOrDefault方法调用起作用的原因;只需调用操作并返回结果(返回的每个项目都是相同的引用)。

builderCopy变量用于避免访问修改后的闭包(确保安全永远不会受到伤害)。

最后的空检查是针对wordList不包含任何元素的情况。在这种情况下,调用LastOrDefault将返回 null。

于 2013-02-23T03:39:35.713 回答
-1

以下是我如何简化您的代码以及实现您想要实现的目标。

private void GenerateList(string[] wordlist)
{
   List<string> wordList = wordlist.ToList(); // initialize the list passing in the array


    var uniqueStr = from item in wordList.Distinct().ToList()
                    orderby item
                    select item;


    txtOutput.Text = String.Join("\n", uniqueStr.ToArray());
}
于 2013-02-23T02:44:10.620 回答