C# Regex Split - everything inside square brackets

后端 未结 2 1758
感动是毒
感动是毒 2020-11-27 16:33

I\'m currently trying to split a string in C# (latest .NET and Visual Studio 2008), in order to retrieve everything that\'s inside square brackets and discard the remaining

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 17:17

    Split won't help you here; you need to use regular expressions:

    // using System.Text.RegularExpressions;
    // pattern = any number of arbitrary characters between square brackets.
    var pattern = @"\[(.*?)\]";
    var query = "H1-receptor antagonist [HSA:3269] [PATH:hsa04080(3269)]";
    var matches = Regex.Matches(query, pattern);
    
    foreach (Match m in matches) {
        Console.WriteLine(m.Groups[1]);
    }
    

    Yields your results.

提交回复
热议问题