本文整理汇总了VB.NET中System.Text.RegularExpressions.Group类的典型用法代码示例。如果您正苦于以下问题:VB.NET Group类的具体用法?VB.NET Group怎么用?VB.NET Group使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Group类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Example
' 导入命名空间
Imports System.Text.RegularExpressions
Module Example
Public Sub Main()
Dim pattern As String = "(\b(\w+?)[,:;]?\s?)+[?.!]"
Dim input As String = "This is one sentence. This is a second sentence."
Dim match As Match = Regex.Match(input, pattern)
Console.WriteLine("Match: " + match.Value)
Dim groupCtr As Integer = 0
For Each group As Group In match.Groups
groupCtr += 1
Console.WriteLine(" Group {0}: '{1}'", groupCtr, group.Value)
Dim captureCtr As Integer = 0
For Each capture As Capture In group.Captures
captureCtr += 1
Console.WriteLine(" Capture {0}: '{1}'", captureCtr, capture.Value)
Next
Next
End Sub
End Module
输出:
Match: This is one sentence. Group 1: 'This is one sentence.' Capture 1: 'This is one sentence.' Group 2: 'sentence' Capture 1: 'This ' Capture 2: 'is ' Capture 3: 'one ' Capture 4: 'sentence' Group 3: 'sentence' Capture 1: 'This' Capture 2: 'is' Capture 3: 'one' Capture 4: 'sentence'