Bridge

String..::..JsSubstring Method (Int32, Int32)

The substring() method returns a subset of a string between one index and another, or through the end of the string.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[NameAttribute]
public string JsSubstring(
	int indexA,
	int indexB
)
<NameAttribute> _
Public Function JsSubstring ( _
	indexA As Integer, _
	indexB As Integer _
) As String
[NameAttribute]
public:
String^ JsSubstring(
	int^ indexA, 
	int^ indexB
)

Parameters

indexA
Type: System..::..Int32
An integer between 0 and the length of the string.
indexB
Type: System..::..Int32
An integer between 0 and the length of the string.

Return Value