Bridge

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

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

Parameters

Regex
Type: System..::..String
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