Capture Class represents the results from a single successful subexpression capture. : Regular Expressions « Development « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Development » Regular ExpressionsScreenshots 
Capture Class represents the results from a single successful subexpression capture.
 

Imports System.Text.RegularExpressions

Module Example
   Public Sub Main()
      Dim input As String = "this is a test."
      Dim pattern As String = "((\w+)[\s.])+"
      For Each match As Match In Regex.Matches(input, pattern)
         Console.WriteLine("Match: {0}", match.Value)
         For groupCtr As Integer = To match.Groups.Count - 1
            Dim group As Group = match.Groups(groupCtr)
            Console.WriteLine("   Group {0}: {1}", groupCtr, group.Value)
            For captureCtr As Integer = To group.Captures.Count - 1
               Console.WriteLine("      Capture {0}: {1}", captureCtr,group.Captures(captureCtr).Value)
            Next
         Next
      Next
   End Sub
End Module

   
  
Related examples in the same category
1.Use Regular Expression to Validate Email addressUse Regular Expression to Validate Email address
2.Validate TextBox: cannot be empty
3.TextBox validation: validate in KeyPressed EventTextBox validation: validate in KeyPressed Event
4.Use Regular Expressions to parse IP address
5.Use Regex to separate stringsUse Regex to separate strings
6.Use Regx.split to split stringUse Regx.split to split string
7.Use Regex to matchUse Regex to match
8.Regular to parse time: 04:03:27Regular to parse time: 04:03:27
9.Regular Expressions MatchRegular Expressions Match
10.Use Regular Expressions to Split StringUse Regular Expressions to Split String
11.Demonstrating Class Regex
12.Regular Expressions: Validate NameRegular Expressions: Validate Name
13.Regular Expressions: Validate AddressRegular Expressions: Validate Address
14.Regular Expressions: Validate City
15.Regular Expressions: Validate Zip CodeRegular Expressions: Validate Zip Code
16.Regular Expressions: validate Phone Number
17.Using Regex method Replace: ^Using Regex method Replace: ^
18.Using Regex method Replace: by another stringUsing Regex method Replace: by another string
19.Using Regex method Replace:\w+Using Regex method Replace:\w+
20.Using Regex method Replace:First 3 digits replacedUsing Regex method Replace:First 3 digits replaced
21.Using Regex method Replace: String split at commasUsing Regex method Replace: String split at commas
22.Strip tags from HTML to create Text version of a web page
23.\w matches any word character.
24.(\w) matches a word character. This is the first capturing group.
25.\1 match the value of the first capture.
26.\s matches any white-space character.
27.\b: Begin the match at a word boundary.
28.\w+: Match one or more word characters.
29.(e)*: Match an "e" either zero or one time.
30.(\s|$) Match either a whitespace character or the end of the input string.
31.^: Begin the match at the beginning of the input string.
32.\D: Match a non-digit character.
33.\d{1,5} Matches from one to five decimal digits.
34.\D* matches zero or one non-decimal character.
35.$ Matches the end of the input string.
36.\S matches any non-white-space character.
37.\b: Begin the match at a word boundary.
38.(\S+): matches one or more non-white-space characters. This is the first capturing group.
39.\s*: matches zero or one white-space character.
40.Regular expression for class and group
41.Decimal Digit Character: \d
42.Parse Link and Image tags in a HTML file
43.Parse Image tags in a HTML file
44.Regex Class represents an immutable regular expression.
45.Define a regular expression for repeated words
46.Find duplicates
47.ArgumentException Class is thrown when one of the arguments provided to a method is not valid.
48.ArgumentOutOfRangeException is thrown when the value of an argument is outside the allowable range
49.CharUnicodeInfo Class has information about a Unicode character
50.Validate email address
51.Regex.Split
w__w__w___.__j__a_va2___s___._c_om___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.