检查字符串是否包含特定值

本文关键字:包含特 是否 字符串 检查 | 更新日期: 2023-09-27 18:16:59

我有一个IF语句,我想检查我的DropDownList是否包含特定的string。我可以知道如何查询吗?

目前我正在处理这个语句:

if (DropDownList1.Text='%james%')
{
}

谢谢

检查字符串是否包含特定值

if (DropDownList1.SelectedItem.Text.Contains("james")
{
  //...
}

如果需要忽略大小写,可以这样做:

bool contains = DropDownList1.SelectedItem.Text.IndexOf("james", StringComparison.OrdinalIgnoreCase) >= 0;
if (contains)
{
  //...
}

try this,

if (DropDownList1.Items.Contains(new ListItem("james")))
{
    // ... code here
}

if (DropDownList1.Items.FindByText("james") != null)
{
    // ... code here
}

使用字符串。包含用于检查字符串是否包含另一个。

if (myString.Contains("james")}
{
}
Regex RegX = new Regex("james"); // james or any of your regex string
if (RegX.IsMatch(DropDownList1.Text))