PHP में मैं ऐसा है कि मैं दोनों कुंजी और उदाहरण के लिए मूल्य की पहुंच है एक foreach पाश का उपयोग कर सकते हैं:सी # foreach पाश
foreach($array as $key => $value)
मैं निम्नलिखित कोड है:
Regex regex = new Regex(pattern);
MatchCollection mc = regex.Matches(haystack);
for (int i = 0; i < mc.Count; i++)
{
GroupCollection gc = mc[i].Groups;
Dictionary<string, string> match = new Dictionary<string, string>();
for (int j = 0; j < gc.Count; j++)
{
//here
}
this.matches.Add(i, match);
}
//here
पर मैं match.add(key, value)
करना चाहता हूं लेकिन मुझे यह नहीं पता कि समूह चयन से कुंजी कैसे प्राप्त करें, जो इस मामले में कैप्चरिंग समूह का नाम होना चाहिए। मुझे पता है कि gc["goupName"].Value
में मैच का मूल्य शामिल है।
कुंजी कौन सा है, जो मूल्य है? – kennytm