class |
ExpandStorage |
Expands all the storage items (using their string representation) and variables in the string(s) passing through.
A string can consist of arbitrary strings and the following special placeholders:
- variables: @{...}
- storage placeholders: %{...}
Input/output:
- accepts:
java.lang.String
java.lang.String[]
- generates:
java.lang.String
java.lang.String[]
|
class |
ExpandVariables |
Expands all the variables in the string(s) passing through.A string can consist of arbitrary strings and the following special placeholder for variables:
@{...}
Input/output:
- accepts:
java.lang.String
java.lang.String[]
- generates:
java.lang.String
java.lang.String[]
|
class |
SimpleStringReplace |
Performs a string replacement, using String.replace(.., ...).
If the 'replace' string contains both, variables and placeholders, then first all variables are expanded and then the placeholders.
|
class |
StringCut |
Cuts out a part of a string.
|
class |
StringIndent |
Indents the string with the specified character.
Splits multi-line strings first and processes each line separately.
|
class |
StringInsert |
Inserts a user-specified string at a specific position into tokens coming through.
The actor is most useful when attaching a variable to the 'value' option, which allows the value to change dynamically then.
|
class |
StringMatcher |
Lets string tokens only pass if they match the regular expression.
|
class |
StringRangeCut |
Cuts out a parts of a string.
|
class |
StringReplace |
Performs a string replacement, using either String.replaceFirst(...) or String.replaceAll(...).
|
class |
StringSanitizer |
Removes all characters that haven't been specified as 'acceptable' characters.
|
class |
StringTrim |
Trims strings, i.e., removes leading/trailing whitespaces.
|