正確存取 .NET 正規表示式中的命名捕獲組
您從 .NET 正規表示式中提取命名捕獲組的原始方法存在輕微缺陷。 正確的方法涉及使用 Groups
物件的 Match
集合。 調整後的程式碼如下:
<code class="language-csharp">string page = Encoding.ASCII.GetString(bytePage); Regex qariRegex = new Regex("<td><a href=\"(?<link>.*?)\">(?<name>.*?)</a></td>"); MatchCollection matches = qariRegex.Matches(page); foreach (Match match in matches) { MessageBox.Show(match.Groups["link"].Value); MessageBox.Show(match.Groups["name"].Value); }</code>
此修訂後的程式碼迭代 MatchCollection
(包含在輸入字串中找到的所有符合項目)。對於每個 Match
,它透過 Groups
集合存取命名的捕獲組(「連結」和「名稱」),並使用 MessageBox.Show
顯示它們各自的值。這確保了捕獲數據的準確檢索。
以上是如何存取 .NET 正規表示式中的命名捕獲組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!