如何在列表中搜索字符串<;元组<;字符串,字符串>>;在C#中

本文关键字:字符串 gt lt 元组 搜索 列表 | 更新日期: 2023-09-27 17:50:25

我有

        List<Tuple<string,string>> tr = new List<Tuple<string,string>>();
        tr.Add(new Tuple<string, string>("Test","Add");
        tr.Add(new Tuple<string, string>("Welcome","Update");
        foreach (var lst in tr)
         {
             if(lst.Contains("Test"))
              MessageBox.Show("Value Avail");
          }

我在做这件事时失败了,。。。。

如何在列表中搜索字符串<;元组<;字符串,字符串>>;在C#中

如果您想使用LINQ:

if(tr.Any(t => t.Item1 == "Test" || t.Item2 == "Test"))
    MessageBox.Show("Value Avail");

如果多次找到文本(如果需要的话(,这也将有只显示一次消息框的好处。

这可能会起作用:

foreach (var lst in tr)
{        
    if (lst.Item1.Equals("Test"))        
        MessageBox.Show("Value Avail");
}

或者这个

if (lst.Item1.Equals("Test") || lst.Item2.Equals("Test"))

阅读元组类;您需要通过Item1和/或Item2属性访问元组的值。


为什么要使用Tuple?也许这更容易:

Dictionary<string, string> dict = new Dictionary<string, string>
{
    {"Test", "Add"},
    {"Welcome", "Update"}
};
if (dict.ContainsKey("Test"))
{
    MessageBox.Show("Value Avail:'t"+dict["Test"]);
}
List<Tuple<string,string>> tr = new List<Tuple<string,string>>();
tr.Add(new Tuple<string, string>("Test","Add");
tr.Add(new Tuple<string, string>("Welcome","Update");
var index = tr.FindIndex(s=>s.Item1 == "Test" || s.Item2 == "Test");
if(index != -1)
MessageBox.Show("Value Avail");

使用FindIndex,您可以同时检查元素的可用性和索引。

它应该是foreach (var lst in tr)而不是lstEvntType,您应该测试元组的Item1字段。

也许这可能会帮助其他人。这是我使用的方法:

List<Tuple<string,string>> tr = new List<Tuple<string,string>>();
tr.Add(new Tuple<string, string>("Test","Add");
tr.Add(new Tuple<string, string>("Welcome","Update");
if(lst.Any(c => c.Item1.Contains("Test")))
    MessageBox.Show("Value Avail");

(此处为贷项(

为什么要迭代lstEvntType而不是tr?你应该试试这个:

List<Tuple<string,string>> tr = new List<Tuple<string,string>>();
tr.Add(new Tuple<string, string>("Test","Add"));
tr.Add(new Tuple<string, string>("Welcome","Update"));
List<Tuple<string,string>>  lstEvntType = new List<Tuple<string,string>>();
    foreach (var lst in tr)
    {
        if(lst.Item1.Equals("Test"))
            MessageBox.Show("Value Avail");
    }

更改

if(lst.Contains("Test"))

 if(lst.Item1.Contains("Test") ||  lst.Item2.Contains("Test"))

若元组有更多的项,则需要为所有项添加条件。

如果你想让它在所有元组中通用,你需要使用反射(以及奇怪的方式(。