substringData method

String substringData(
  1. int offset,
  2. int count
)

The substringData() method of the CharacterData interface returns a portion of the existing data, starting at the specified index and extending for a given number of characters afterwards.

Implementation

external String substringData(
  int offset,
  int count,
);