StringPrototype::replace Method (Object^, Object^, Object^)

 

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

Runs a search for the specified regular expression pattern on the first specified object, and replaces any matches with the third specified object.

Namespace:   Microsoft.JScript
Assembly:  Microsoft.JScript (in Microsoft.JScript.dll)

public:
[JSFunctionAttribute(JSFunctionAttributeEnum::HasThisObject, 
	JSBuiltin::String_replace)]
static String^ replace(
	Object^ thisob,
	Object^ regExp,
	Object^ replacement
)

Parameters

thisob
Type: System::Object^

The object that this method is acting upon.

regExp
Type: System::Object^

The regular expression pattern to search for.

replacement
Type: System::Object^

The replacement for any matches.

Return Value

Type: System::String^

The new string, after the replacement is made.

.NET Framework
Available since 1.1
Return to top
Show: