Regex regex = new Regex(~~~);
MatchCollection mc = regex.Matches(inputdata);
      string pr = null;

       foreach(Match m in mc)
       {
          pr += m.Groups[1] + "=" + m.Groups[2] + "&";
       }


이런꼴의 C#코드가있는데 go로 바꾸려니까 regex group 사용법을 모르겠어요 ㅠㅠ