StringPrototype::substr Method (Object^, Double, Object^)

 

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

Creates a new string that contains the specified number of consecutive characters from the specified string, starting from the specified character position. Use substring instead, if you can.

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

public:
[NotRecommended("substr")]
[JSFunctionAttribute(JSFunctionAttributeEnum::HasThisObject, 
	JSBuiltin::String_substr)]
static String^ substr(
	Object^ thisob,
	double start,
	Object^ count
)

Parameters

thisob
Type: System::Object^

The object that this method is acting upon.

start
Type: System::Double

The first consecutive character to get.

count
Type: System::Object^

The number of characters to get.

Return Value

Type: System::String^

A new string that contains count consecutive characters, starting at start.

.NET Framework
Available since 1.1
Return to top
Show: