首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

遍历C#列表,查找多个匹配字符串,并返回索引位置

在C#中,要遍历一个列表并查找多个匹配字符串,并返回索引位置,可以使用LINQ查询和IndexOf方法来实现。

以下是一个示例代码:

代码语言:txt
复制
using System;
using System.Collections.Generic;
using System.Linq;

public class Program
{
    public static void Main(string[] args)
    {
        List<string> strings = new List<string>
        {
            "Hello",
            "World",
            "Foo",
            "Bar",
            "Baz"
        };

        List<string> searchStrings = new List<string>
        {
            "World",
            "Foo",
            "Qux"
        };

        List<int> indexes = searchStrings
            .SelectMany(searchString => strings.Select((value, index) => new { value, index }))
            .Where(x => x.value.Contains(searchStrings))
            .Select(x => x.index)
            .ToList();

        foreach (int index in indexes)
        {
            Console.WriteLine(index);
        }
    }
}

上述代码中,我们创建了一个List<string>对象strings,其中包含了一些字符串。然后,我们创建了一个List<string>对象searchStrings,其中包含了要搜索的多个匹配字符串。

使用LINQ查询,我们可以将searchStrings中的每个搜索字符串与strings列表中的每个字符串进行比较,并返回匹配的索引位置。

最后,我们将匹配的索引位置打印出来。

请注意,以上代码仅为示例,实际应用中可能需要根据具体情况进行适当的修改和优化。

腾讯云相关产品和产品介绍链接地址:

  • 云计算服务:https://cloud.tencent.com/product/cvm
  • 云数据库 TencentDB:https://cloud.tencent.com/product/cdb
  • 云服务器 CVM:https://cloud.tencent.com/product/cvm
  • 腾讯云开发者工具套件:https://cloud.tencent.com/product/sdk
  • 人工智能平台(AI Lab):https://cloud.tencent.com/product/ai
  • 云存储 COS:https://cloud.tencent.com/product/cos
  • 区块链服务 TBCAS:https://cloud.tencent.com/product/tbcas
  • 腾讯云元宇宙:https://cloud.tencent.com/solution/vr-ar
页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

没有搜到相关的沙龙

领券