Bridge

String..::..Search Method (Regex)

The search() method executes a search for a match between a regular expression and this String object.

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

Syntax


public int Search(
	Regex Regex
)
Public Function Search ( _
	Regex As Regex _
) As Integer
public:
int^ Search(
	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