| Class | Description |
|---|---|
| StringCompare |
Compare two strings specified either as inputs or parameters.
|
| StringFunction |
Produce the output string generated by applying a user-specified
string function on a provided input string.
|
| StringIndexOf |
Output the index of a searchFor string contained in a given
inText.
|
| StringLength |
Output the length of a string provided at the input.
|
| StringMatches |
Pattern match a string to a regular expression and output a true if it
matches and a false if it does not.
|
| StringReplace |
On each firing, look for instances of the pattern specified by pattern
in stringToEdit and replace them with the string given by
replacement.
|
| StringSimpleReplace | Deprecated
This class is primarily used in models that will be code generated so that regular expressions are not needed in the output.
|
| StringSplit |
This actor reads an input string and splits it into an array of
strings.
|
| StringSubstring |
Output a substring of the string provided at the input.
|