StringPrototype.match(Object, VsaEngine, Object) Method

Definition

Runs a search for the specified regular expression pattern on the specified object.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::Object ^ match(System::Object ^ thisob, Microsoft::JScript::Vsa::VsaEngine ^ engine, System::Object ^ regExp);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasEngine | Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_match)]
public static object match (object thisob, Microsoft.JScript.Vsa.VsaEngine engine, object regExp);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasEngine | Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_match)>]
static member match : obj * Microsoft.JScript.Vsa.VsaEngine * obj -> obj
Public Shared Function match (thisob As Object, engine As VsaEngine, regExp As Object) As Object

Parameters

thisob
Object

The object that this method is acting upon.

engine
VsaEngine

A reference to the scripting engine.

regExp
Object

The regular expression pattern to search for.

Returns

The result of the search for the regular expression pattern.

Attributes

Applies to

See also