Bridge

String..::..Match Method (Regex)

The match() method retrieves the matches when matching a string against a regular expression.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


public string[] Match(
	Regex Regex
)
Public Function Match ( _
	Regex As Regex _
) As String()
public:
array<String^>^ Match(
	Regex^ Regex
)

Parameters

Regex
Type: Bridge.Text.RegularExpressions..::..Regex
A regular expression object. If a non-Regex object obj is passed, it is implicitly converted to a Regex by using new Regex(obj).

Return Value