substr \beginning \end \string

Given a String, returns the substring starting at beginning and ending at end.


listFromStr \str

Results in a List of the elements of str.


str? \v

Whether v is in fact a str.


strFromKeyword \keyword

Results in the name text of keyword.


strFromList \list

Results in a str with the same elements as list.


strcat \a \b

Results in a and b concatenated, in that order. Like (++), but for Strings.


strjoin \sep \strings

Given a seperator sep (a String) and a List of Strings, results in a String where all elements are connected (in order) by sep.


strFromInteger \v

Given an integral value, results in its (Arabic) String representation.


integerFromStr \v

Given an (Arabic) String representation, results in its integral value.