StringPrototype.match(Object, VsaEngine, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.