Useful API Functions

Aus expecco Wiki (Version 25.x)
Zur Navigation springen Zur Suche springen

String

Copying Substrings

aString copyFrom:startIndex to:endIndex

Example:

 'hello world' copyFrom:1 to:5. 
 => 'hello'

Notice: indices are 1-based. Valid indices range from 1 to the string's size.



Copyright © 2014-2024 eXept Software AG