-
charAt
Gets the character at a given index.
POST /string/charAtReturns a new string of a single UTF-16 code unit located at the specified offset in the string.
-
charCodeAt
Gets UTF-16 code of a string at an index.
POST /string/charCodeAtReturns an integer between 0 and 65535 representing the UTF-16 code unit at the given index.
-
codePointAt
Gets Unicode value of a character in a string.
POST /string/codePointAtReturns a non-negative integer that is the Unicode code point value.
-
concat
Concatenates strings together.
POST /string/concatConcatenates a string with a second string(s). The second parameter can be a string or array.
-
endsWith
If one string is included at the end of another.
POST /string/endsWithDetermines whether a string ends with the characters of a specified string.
-
includes
Finds whether one string is included within another.
POST /string/includesDetermines whether one string can be found within another string, returning true or false
-
indexOf
Gets index of first string value within another.
POST /string/indexOfReturns the index within the first argument, str, of the first occurrence of the specified value, starting the search at fromIndex. Returns -1 if value not found
-
lastIndexOf
Last index of string value within a string.
POST /string/lastIndexOfReturns the index within the str of the last occurrence of the specified value, searching backwards from fromIndex.
-
length
Gets the length of a string.
POST /string/lengthReturns the length of a string, in UTF-16 code units.
-
localeCompare
Compares two strings.
POST /string/localeCompareReturns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.
-
match
Finds regex matches in a string.
POST /string/matchRetrieves the matches when matching a string against a regular expression.
-
normalize
Normalizes a string.
POST /string/normalizeReturns the Unicode Normalization Form of a given string.
-
padEnd
Pads the end of a string with another string.
POST /string/padEndPads the current string with a given string (repeated, if needed) so that the resulting string reaches a given length. The padding is applied from the end of the current string.
-
padStart
Pads the start of a string with another string.
POST /string/padStartPads the current string with a given string (repeated, if needed) so that the resulting string reaches a given length. The padding is applied from the start (left) of the current string.
-
repeat
Copies a string a specified number times.
POST /string/repeatConstructs and returns a new string which contains the specified number of copies of the string on which it was called, concatenated together.
-
replace
Replaces a string with another string.
POST /string/replaceReturns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and the replacement can be a string or a function to be called for each match (function type not supported in workflow engine).
-
search
Searches for matches in a string.
POST /string/searchSearches for a match between a regular expression and this String object.
-
slice
Extracts part of a string.
POST /string/sliceExtracts a section of a string and returns it as a new string, without modifying the original string.
-
split
Splits a string into an array of substrings
POST /string/splitSplits a string into an array of strings by separating the string into substrings, using a specified separator string to determine where to make each split.
-
startsWith
Determines if string starts with another string.
POST /string/startsWithDetermines whether a string begins with the characters of a specified string, returning true or false
-
substring
Gets a substring using specified indices.
POST /string/substringReturns the part of the string between the start and end indexes, or to the end of the string.
-
toLocaleLowerCase
Converts a string to locale lower case.
POST /string/toLocaleLowerCaseReturns the calling string value converted to lower case, according to any locale-specific case mappings.
-
toLocaleUpperCase
Converts a string to locale upper case.
POST /string/toLocaleUpperCaseReturns the calling string value converted to upper case, according to any locale-specific case mappings.
-
toLowerCase
Converts a string to lower case.
POST /string/toLowerCaseReturns the calling string value converted to lower case.
-
toString
Return a string representation.
POST /string/toStringReturns a string representing the specified object.
-
toUpperCase
Converts a string to upper case.
POST /string/toUpperCaseReturns the calling string value converted to upper case.
-
trim
Removes whitespace.
POST /string/trimRemoves whitespace from both ends of a string.
-
trimEnd
Removes whitespace from the right.
POST /string/trimEndRemoves whitespace from the end of a string.
-
trimStart
Removes whitespace from the left.
POST /string/trimStartRemoves whitespace from the beginning of a string.
-
valueOf
Returns the primitive string.
POST /string/valueOfReturns the primitive value of a String object.