]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.tutorial/scl/Tutorial/1.09 Strings.md
Import org.simantics.scl.tutorial from incubator SVN repo
[simantics/platform.git] / bundles / org.simantics.scl.tutorial / scl / Tutorial / 1.09 Strings.md
1 # Strings\r
2 \r
3 Strings are essentially lists of (Unicode) characters and therefore many functions that operate\r
4 on lists can also be used with strings:\r
5 \r
6 ::value[Prelude/+, Prelude/sum, Prelude/length, Prelude/take, Prelude/drop, Prelude/sub]\r
7 \r
8 Strings have currently their own function for accessing indivial characters\r
9 (but in the future they may also support `!` operator). \r
10 \r
11 ::value[Prelude/charAt]\r
12 \r
13 The following operations are often useful for \r