Retrieves a substring, of the full string, from the specified range.

[VBScript]
Public Function SubstringData( _
   ByVal offset As Integer _
   ByVal count As Integer _
) As String
[JScript]
public function SubstringData(
   offset : int,
   count : int
) : String;

Parameters

offset
The position within the string to start retrieving.
count
The number of characters to retrieve.

Return Value

The substring of the specified range.

See Also

CharacterData Object | CharacterData Members | DOM Namespace