String functions

str

Arguments: [Nullable[Anything]]

Returns: Text

Returns a text representation of the given argument

str_length

Arguments: [Text]

Returns: Integer

Returns the length of a Text argument

starts_with

Arguments: [test: Text, prefix: Text]

Returns: Bool

Returns true if the given test string argument starts with the prefix argument. False otherwise

ends_with

Arguments: [test: Text, suffix: Text]

Returns: Bool

Returns true if the given test string argument ends with the suffix argument. False otherwise

str_find

Arguments: [haystack: Text, needle: Text]

Returns: Bool

Returns true if the haystack argument contains the needle argument sub-string