C# 非元音单词

发布于 2024-08-12 13:56:09 字数 251 浏览 10 评论 0原文

我想要一个需要返回非元音单词的扩展方法。

 public static IEnumerable<T> NonVowelWords<T>(this IEnumerable<T> word)
    {
        return word.Any(w => w.Contains("aeiou"));
    }

我设计时收到错误,因为“T”不包含扩展方法“Contains”。

I want an extension method that needs to return non-vowel words.I designed

 public static IEnumerable<T> NonVowelWords<T>(this IEnumerable<T> word)
    {
        return word.Any(w => w.Contains("aeiou"));
    }

I received error as "T" does not contain extanesion method "Contains".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

没有心的人 2024-08-19 13:56:09

如果您总是处理字符串,则不需要使用通用方法。

public static IEnumerable<string> NonVowelWords(this IEnumerable<string> words)
{
    char[] vowels = { 'a', 'e', 'i', 'o', 'u' };

    return words.Where(w => w.IndexOfAny(vowels) == -1);
}

You don't need to use a generic method if you're always dealing with strings.

public static IEnumerable<string> NonVowelWords(this IEnumerable<string> words)
{
    char[] vowels = { 'a', 'e', 'i', 'o', 'u' };

    return words.Where(w => w.IndexOfAny(vowels) == -1);
}
苏别ゝ 2024-08-19 13:56:09

尝试

public static IEnumerable<string> NonVowelWords<T>(this IEnumerable<string> word)
{
    return word.Where(w => !(w.Contains("a") || w.Contains("i") || w.Contains("u") || w.Contains("e") || w.Contains("o")));
}

Try

public static IEnumerable<string> NonVowelWords<T>(this IEnumerable<string> word)
{
    return word.Where(w => !(w.Contains("a") || w.Contains("i") || w.Contains("u") || w.Contains("e") || w.Contains("o")));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文