StringPrototype.search(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 int search(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_search)]
public static int search (object thisob, Microsoft.JScript.Vsa.VsaEngine engine, object regExp);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasEngine | Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_search)>]
static member search : obj * Microsoft.JScript.Vsa.VsaEngine * obj -> int
Public Shared Function search (thisob As Object, engine As VsaEngine, regExp As Object) As Integer
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
If the search is successful, the index of the match; otherwise, -1.
- Attributes