String copyto 0-based
Aus ExpeccoWiki
(Weitergeleitet von String copyto 1-based)
Inhaltsverzeichnis |
Schema
Operations
- Return a substring ending at the 0-based index endIndex.
- Returns an empty string, if the endIndex is less than 0. Returns a single-character string, if the endIndex is 0. Return the entire original string, if the endIndex is beyon the end of the string.
Schema
Operations
- Return a substring ending at the 1-based index endIndex.
- Returns an empty string, if the endIndex is less than 1. Returns a single-character string, if the endIndex is 1. Return the entire original string, if the endIndex is beyon the end of the string.
Revisions
These blocks has been in the Standard Library since 1.0.
Back to Standard Library.
Previous: String [ CopyFrom 1-based ]
Next: String [ CopyTo 1-based ]

