Useful API Functions: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Cg (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== String == === Copying Substrings === ''aString'' <code>copyFrom: ''startIndex''to: 'éndIndex'' 'hello world' copyFrom:1 to:5. => 'hello'“) |
Cg (Diskussion | Beiträge) |
||
Zeile 5: | Zeile 5: | ||
''aString'' <code>copyFrom: ''startIndex''to: 'éndIndex'' |
''aString'' <code>copyFrom: ''startIndex''to: 'éndIndex'' |
||
Example: |
|||
'hello world' copyFrom:1 to:5. => 'hello' |
'hello world' copyFrom:1 to:5. => 'hello' |
Version vom 27. Juli 2019, 14:12 Uhr
String[Bearbeiten]
Copying Substrings[Bearbeiten]
aString copyFrom: startIndexto: 'éndIndex
Example:
'hello world' copyFrom:1 to:5. => 'hello'