String Functions
- length STRING - number of characters
- lc STRING - lower case
- uc STRING - upper case
- index STRING - the location of a substring given its content
- substr STRING, OFFSET, LENGTH - the content of a substring given its location
say length 'abc'; # 3 say length 23; # 2