7

我有一个这样的字符串列表:

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
    }
}
4

7 回答 7

14

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

例子:

Match match = Regex.Match("Item 3: #item3#", "#[^#]+#");
if (match.Success) {
    Console.WriteLine(match.Captures[0].Value); // Will output "#item3#"
}
于 2013-02-14T08:29:50.333 回答
3

这是在 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#

于 2013-02-14T08:46:10.173 回答
2

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
);
于 2013-02-14T08:32:56.113 回答
1

该代码将解决您的问题。但如果字符串不包含 #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();
于 2013-02-14T08:33:57.693 回答
0

这个怎么样:

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);
}
于 2013-02-14T08:30:17.960 回答
0

你可以通过简单地使用来做到这一点:

    List<string> list2 = new List<string>();
    list.ForEach(x => list2.Add(x.Substring(x.IndexOf("#"), x.Length - x.IndexOf("#"))));
于 2013-02-14T08:30:47.080 回答
0

试试这个。

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


}
于 2013-02-14T08:31:47.130 回答