C#从字符串中获取具有特定模式的子字符串

本文关键字:字符串 模式 获取 | 更新日期: 2023-09-27 17:58:59

我有一个字符串列表,如下所示:

List<string> list = new List<string>();
list.Add("Item 1: #item1#");
list.Add("Item 2: #item2#");
list.Add("Item 3: #item3#");

如何将子字符串#item1#、#item2#等添加到新列表中?

只有当字符串包含"#"时,我才能通过以下操作获得完整的字符串:

foreach (var item in list)
{
    if(item.Contains("#"))
    {
        //Add item to new list
    }
}

C#从字符串中获取具有特定模式的子字符串

您可以查看Regex.Match。如果您对正则表达式有一点了解(在您的情况下,这将是一个非常简单的模式:"#[^#]+#"),您可以使用它来提取以'#'开头和结尾的所有项,以及介于两者之间的除'#'之外的任何数量的其他字符。

示例:

Match match = Regex.Match("Item 3: #item3#", "#[^#]+#");
if (match.Success) {
    Console.WriteLine(match.Captures[0].Value); // Will output "#item3#"
}

下面是将正则表达式与LINQ一起使用的另一种方法。(不确定您的确切需求参考了正则表达式,所以现在您可能有两个问题。)

var list = new List<string> ()
{
    "Item 1: #item1#",
    "Item 2: #item2#",
    "Item 3: #item3#",
    "Item 4: #item4#",
    "Item 5: #item5#",
};
var pattern = @"#[A-za-z0-9]*#";
list.Select (x => Regex.Match (x, pattern))
    .Where (x => x.Success)
    .Select (x => x.Value)
    .ToList ()
    .ForEach (Console.WriteLine);

输出:

#项目1#

#项目2#

#项目3#

#项目4#

#项目5#

LINQ会很好地完成这项工作:

var newList = list.Select(s => '#' + s.Split('#')[1] + '#').ToList();

或者,如果您更喜欢查询表达式:

var newList = (from s in list
               select '#' + s.Split('#')[1] + '#').ToList();

或者,您可以按照Botz3000的建议使用正则表达式,并将其与LINQ:结合使用

var newList = new List(
    from match in list.Select(s => Regex.Match(s, "#[^#]+#"))
    where match.Success
    select match.Captures[0].Value
);

代码将解决您的问题。但是,如果字符串不包含#item#,则将使用原始字符串。

var inputList = new List<string>
    {
        "Item 1: #item1#",
        "Item 2: #item2#",
        "Item 3: #item3#",
        "Item 4: item4"
    };
var outputList = inputList
    .Select(item =>
        {
            int startPos = item.IndexOf('#');
            if (startPos < 0)
                return item;
            int endPos = item.IndexOf('#', startPos + 1);
            if (endPos < 0)
                return item;
            return item.Substring(startPos, endPos - startPos + 1);
        })
    .ToList();

这个怎么样:

List<string> substring_list = new List<string>();
foreach (string item in list)
{
    int first = item.IndexOf("#");
    int second = item.IndexOf("#", first);
    substring_list.Add(item.Substring(first, second - first);
}

只需使用:

    List<string> list2 = new List<string>();
    list.ForEach(x => list2.Add(x.Substring(x.IndexOf("#"), x.Length - x.IndexOf("#"))));

试试这个。

var itemList = new List<string>();
foreach(var text in list){
string item = text.Split(':')[1];
itemList.Add(item);

}