gpt4 book ai didi

c# - 检查文本框中是否有任何字符

转载 作者:太空狗 更新时间:2023-10-30 00:25:20 26 4
gpt4 key购买 nike

我在全局、按钮和文本框上有一个字符数组,如何检查 textBox1.Text 中的单词是否包含字符数组中的字母?

char[] letters = { 'a', 'e' };

private void button1_Click(object sender, EventArgs e)
{
bool containsAnyLetter = textBox1.Text.IndexOfAny(letters) >= 0;

if (containsAnyLetter == true)
{
MessageBox.Show("your word contains a or e");
}
}

最佳答案

您可以执行此操作以查看字符串是否包含任何字母:

private void button1_Click(object sender, EventArgs e)
{
bool containsAnyLetter = letters.Any(c => textBox1.Text.Contains(c));
}

或者更简单地说:

private void button1_Click(object sender, EventArgs e)
{
bool containsAnyLetter = textBox1.Text.IndexOfAny(letters) >= 0;
}

关于c# - 检查文本框中是否有任何字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17663474/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com