匹配集合正则表达式模式

时间:2018-01-24 02:25:20

标签: c# regex

我正在试图找出正则表达式模式,以从我的正文中获取“displayName”和“id”。 (一个json对象)。

以下是来源:

  "value": [
    {
        "displayName": "Alpha,Patient",
        "id": "0-50F!16077"
    },
    {
        "displayName": "Beta,Patient",
        "id": "0-50F!16078"
    },
    {
        "displayName": "Beta6,Pateint",
        "id": "0-50F!12035"
    },
    {
        "displayName": "Delta,Patient",
        "id": "0-50F!16399"
    },

这是正在使用的正则表达式模式和代码。

  string regularExpressionPattern1 = "\\{(.*?)\\},";
        Regex regex = new Regex(regularExpressionPattern1, RegexOptions.Singleline);
        MatchCollection collection = regex.Matches(body.ToString());

        string tempStr=collection[0].Groups[1].ToString();

        foreach(Match m in collection)
        {
            string[] tempArray = m.Value.ToString().Split(',');
        }

逃避花括号是我能想到的最好的。

我希望我的收藏品看起来像:

Alpha,患者,0-50FCF5!16077 Beta,患者,0-50FCF5!16077

1 个答案:

答案 0 :(得分:1)

它不漂亮,但是如果你必须使用正则表达式,并且你确定文本是什么样的:

var re = new Regex(@"(?s)displayName"": ""(?<name>.+?)"",.*?id"": ""(?<id>.+?)""");

foreach (Match match in re.Matches(text))
{
    Console.WriteLine($"displayName = {match.Groups["name"]} | id = {match.Groups["id"]}");
}

// displayName = Alpha,Patient | id = 0-50F!16077
// displayName = Beta,Patient | id = 0-50F!16078
// displayName = Beta6,Pateint | id = 0-50F!12035
// displayName = Delta,Patient | id = 0-50F!16399

但实际上,如果您的文本是JSON,那么正确的JSON解析器可能会给您带来更满意的结果。