Click or drag to resize

StringExtensionsSubstringJS Method

Implements the javascript string.substring() function which differs from the C# string.Substring() method in that the 2nd argument is the index of the first character to exclude vs. the character count. The rules for handling the two indices are as described in https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static string SubstringJS(
	this string s,
	int startIndex,
	int beyondEndIndex = 2147483647
)

Parameters

s
Type: SystemString
The string.
startIndex
Type: SystemInt32
The 0-based index of the first character to return.
beyondEndIndex (Optional)
Type: SystemInt32
The 0-based index of the first character to EXCLUDE.

Return Value

Type: String
The specified substring.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also