This category provides functions for manipulating string variables. You can do things such as search, extract, validate, format, replace, and append strings, and also manipulate URI query strings.
String Manipulation Action Cell |
Description |
|
|
Extracts a sequence of characters from a specified location (offset) in a string variable and stores the extraction in another string variable. |
|
|
Searches for a sequence of characters in a string variable and branches accordingly. |
|
|
Measures the character length of a string. |
|
|
Combines variables collected by the script into a single string variable. |
|
|
Replaces a sequence of characters in a string variable with another sequence of characters. |
|
|
Extends a string by joining another string to the end of it. |
|
|
Inserts a string at a specified location (offset) in another string. |
|
|
Inserts an ASCII character at a specified location (offset) in a string. |
|
|
Converts all of the alphabetic characters in a string variable to either upper or lower case. |
|
|
Retrieves parameter values from a URI query string. |
|
|
Inserts values into a URI query string. |
|
Uses a regular expression (regex) pattern to search for a specific string or patterns of text in a string variable and branches accordingly. |