Category - String
Much like the grep command line program provides regular expression matching, the Grep patch matches patterns against strings.
If the Replace input is not an empty string, then any instances of the found string are replaced, and the resulting string is output. Parenthesis grouping and replacement with $1, $2... is supported.
more...
Uploaded 07 Feb 20:56
This patch generates a string from a template and a series of arguments.
The template is defined in the patch's settings as string where the special sequences of characters "%@" (without the quotes) are replaced by arguments.
Those arguments are passed to the patch through the related string inputs, combined with the template, and the resulting string is put on the "String" output. more...
Uploaded 07 Feb 20:56
This patch extracts arguments from a string using a template.
The template is defined in the patch's settings as string where the special sequences of characters "%@" (without the quotes) replace arguments.
The string passed to the "String" input of the patch is scanned, arguments are extracted and put on the related string outputs.
Note that undefined arguments will be set to empty strings. more...
Uploaded 07 Feb 20:56
This patch truncates a string, from its beginning, middle or end, to a maximum number of characters, words, or sentences.
The "Token" string input defines the string to insert where the truncation took place in the original string. more...
Uploaded 19 Jan 19:47
· built-in patch
This patch replaces occurences of a substring within a string by another string. more...
Uploaded 19 Jan 19:47
· built-in patch
This patch changes all the characters of a string to uppercase or lowercase. It can also "capitalize" the string so that the first character from each word is uppercase and all remaining characters are lowercase. more...
Uploaded 19 Jan 19:47
· built-in patch
This patch compares two strings and returns the result as an index: "0" if the strings are equal, "1" if the first string precedes the second one, "2" otherwise.
Note that the comparison is case-insensitive. more...
Uploaded 19 Jan 19:47
· built-in patch
This patch explodes a string into substrings according to a specified separator.
The list of substrings is returned as a structure whose members correspond to the substrings.
Note that if the string to explode begins or ends with the separator, the first or last substring, respectively, is empty. If the separator is the empty string, Strings Components will return a structure listing all characters individually. more...
Uploaded 19 Jan 19:47
· built-in patch
This patch returns the number of characters in a string. more...
Uploaded 19 Jan 19:47
· built-in patch
Extracts a substring from a string. more...
Uploaded 19 Jan 19:47
· built-in patch