Function

Description

add

Appends one string onto the end of another.

concatenate

Appends one string onto the end of one or more others.

csvDecode

Decodes a string of comma-separated values and returns a list of Double.

csvEncode

Encodes a list and returns a CSV string.

strlen

Returns the length of the string

substring

Returns a substring of a string.

add

addText

 

Takes two Strings as input, appends the second String onto the end of the first one. Returns the new String.

concatenate

concatenate

 

Takes two Strings as input, appends the second String onto the end of the first one. There are versions of this function that allow up to five strings to be concatenated. Returns the new String.

csvDecode

csvDecode

 

Takes a String of comma-separated values, decodes them and returns a list of Doubles.

csvEncode

csvEncode

 

Takes a List of values, optionally whether all items should be quoted regardless of content or when necessary, and returns a string of comma separated values.

strlen

strlen

 

Takes a string, and returns its length.

substring

substring

 

Takes a string and the index of the start character, optionally the number of characters and whether to autoshorten, and returns a substring of the original.