Example:

length( hello )

Returns: 5

lower (text)

Converts all alphabetical characters in a text string to lowercase.

Example:

lower( Hello )

Returns: hello

capitalize (text)

Converts the first character in a text string to uppercase.

Example:

capitalize( workfront )

Returns: Workfront

startcase (text)

Capitalizes the first letter of every word and lower cases all other letters.

Example:
startcase( hello WORLD )

Returns: Hello World

ascii (text; [remove diacritics])

Removes all non-ascii characters from a text string.