Skip to main content

Chainable Ops

string-notEqual

Determines inequality of two values.

Return Value

Whether the two values are not equal.

string-add

Concatenates two strings

Return Value

The concatenated string

string-equal

Determines equality of two values.

Return Value

Whether the two values are equal.

string-append

Appends a suffix to a string

Return Value

The string with the suffix appended

string-contains

Checks if a string contains a substring

Return Value

Whether the string contains the substring

string-endsWith

Checks if a string ends with a suffix

Return Value

Whether the string ends with the suffix

string-findAll

Finds all occurrences of a substring in a string

Return Value

The list of indices of the substring in the string

string-isAlnum

Checks if a string is alphanumeric

Return Value

Whether the string is alphanumeric

string-isAlpha

Checks if a string is alphabetic

Return Value

Whether the string is alphabetic

string-isNumeric

Checks if a string is numeric

Return Value

Whether the string is numeric

string-lStrip

Strip leading whitespace

Return Value

The stripped string.

string-len

Returns the length of a string

Return Value

The length of the string

string-lower

Converts a string to lowercase

Return Value

The lowercase string

string-partition

Partitions a string into a list of the strings

Return Value

A list of strings: the string before the separator, the separator, and the string after the separator

string-prepend

Prepends a prefix to a string

Return Value

The string with the prefix prepended

string-rStrip

Strip trailing whitespace

Return Value

The stripped string.

string-replace

Replaces all occurrences of a substring in a string

Return Value

The string with the replacements

string-slice

Slices a string into a substring based on beginning and end indices

Return Value

The substring

string-split

Splits a string into a list of strings

Return Value

The list of strings

string-startsWith

Checks if a string starts with a prefix

Return Value

Whether the string starts with the prefix

string-strip

Strip whitespace from both ends of a string.

Return Value

The stripped string.

string-upper

Converts a string to uppercase

Return Value

The uppercase string

string-levenshtein

Calculates the Levenshtein distance between two strings.

Return Value

The Levenshtein distance between the two strings.

List Ops

string-notEqual

Determines inequality of two values.

Return Value

Whether the two values are not equal.

string-add

Concatenates two strings

Return Value

The concatenated string

string-equal

Determines equality of two values.

Return Value

Whether the two values are equal.

string-append

Appends a suffix to a string

Return Value

The string with the suffix appended

string-contains

Checks if a string contains a substring

Return Value

Whether the string contains the substring

string-endsWith

Checks if a string ends with a suffix

Return Value

Whether the string ends with the suffix

string-findAll

Finds all occurrences of a substring in a string

Return Value

The list of indices of the substring in the string

string-isAlnum

Checks if a string is alphanumeric

Return Value

Whether the string is alphanumeric

string-isAlpha

Checks if a string is alphabetic

Return Value

Whether the string is alphabetic

string-isNumeric

Checks if a string is numeric

Return Value

Whether the string is numeric

string-lStrip

Strip leading whitespace

Return Value

The stripped string.

string-len

Returns the length of a string

Return Value

The length of the string

string-lower

Converts a string to lowercase

Return Value

The lowercase string

string-partition

Partitions a string into a list of the strings

Return Value

A list of strings: the string before the separator, the separator, and the string after the separator

string-prepend

Prepends a prefix to a string

Return Value

The string with the prefix prepended

string-rStrip

Strip trailing whitespace

Return Value

The stripped string.

string-replace

Replaces all occurrences of a substring in a string

Return Value

The string with the replacements

string-slice

Slices a string into a substring based on beginning and end indices

Return Value

The substring

string-split

Splits a string into a list of strings

Return Value

The list of strings

string-startsWith

Checks if a string starts with a prefix

Return Value

Whether the string starts with the prefix

string-strip

Strip whitespace from both ends of a string.

Return Value

The stripped string.

string-upper

Converts a string to uppercase

Return Value

The uppercase string

string-levenshtein

Calculates the Levenshtein distance between two strings.

Return Value

The Levenshtein distance between the two strings.