C # Regex에서 캡처 된 그룹의 이름을 어떻게 얻습니까?


97

C #에서 캡처 된 그룹의 이름을 얻는 방법이 있습니까?

string line = "No.123456789  04/09/2009  999";
Regex regex = new Regex(@"(?<number>[\d]{9})  (?<date>[\d]{2}/[\d]{2}/[\d]{4})  (?<code>.*)");

GroupCollection groups = regex.Match(line).Groups;

foreach (Group group in groups)
{
    Console.WriteLine("Group: {0}, Value: {1}", ???, group.Value);
}

이 결과를 얻고 싶습니다.

그룹 : [무엇을 가야할지 모르겠습니다.], 값 : 123456789 04/09/2009 999
그룹 : 숫자, 값 : 123456789
그룹 : 날짜, 값 : 2009 년 4 월 9 일
그룹 : 코드, 값 : 999

답변:


127

GetGroupNames 를 사용 하여 식의 그룹 목록을 가져온 다음 이름을 그룹 컬렉션의 키로 사용하여 반복합니다.

예를 들면

GroupCollection groups = regex.Match(line).Groups;

foreach (string groupName in regex.GetGroupNames())
{
    Console.WriteLine(
       "Group: {0}, Value: {1}",
       groupName,
       groups[groupName].Value);
}

9
감사합니다! 정확히 내가 원했던 것. 나는 이것이 Regex 객체에있을 것이라고는 결코 생각하지 못했습니다. (
Luiz Damim

22

이를위한 가장 깨끗한 방법은 다음 확장 방법을 사용하는 것입니다.

public static class MyExtensionMethods
{
    public static Dictionary<string, string> MatchNamedCaptures(this Regex regex, string input)
    {
        var namedCaptureDictionary = new Dictionary<string, string>();
        GroupCollection groups = regex.Match(input).Groups;
        string [] groupNames = regex.GetGroupNames();
        foreach (string groupName in groupNames)
            if (groups[groupName].Captures.Count > 0)
                namedCaptureDictionary.Add(groupName,groups[groupName].Value);
        return namedCaptureDictionary;
    }
}


이 확장 방법이 제자리에 있으면 다음과 같은 이름과 값을 얻을 수 있습니다.

    var regex = new Regex(@"(?<year>[\d]+)\|(?<month>[\d]+)\|(?<day>[\d]+)");
    var namedCaptures = regex.MatchNamedCaptures(wikiDate);

    string s = "";
    foreach (var item in namedCaptures)
    {
        s += item.Key + ": " + item.Value + "\r\n";
    }

    s += namedCaptures["year"];
    s += namedCaptures["month"];
    s += namedCaptures["day"];


7

사용해야 GetGroupNames();하며 코드는 다음과 같습니다.

    string line = "No.123456789  04/09/2009  999";
    Regex regex = 
        new Regex(@"(?<number>[\d]{9})  (?<date>[\d]{2}/[\d]{2}/[\d]{4})  (?<code>.*)");

    GroupCollection groups = regex.Match(line).Groups;

    var grpNames = regex.GetGroupNames();

    foreach (var grpName in grpNames)
    {
        Console.WriteLine("Group: {0}, Value: {1}", grpName, groups[grpName].Value);
    }

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.