Takes a list of items as input and returns one concatenated String.
Values
The list of items which will be concatenated.
Type: List<Any>
String
Returns an empty String.
No parameters
String
Takes the String ValueA as input and returns a String of the specified length starting from the end.
Value
String the operation is performed on.
Type: String
Length
Length of the substring.
Type: Int
String
Represents the formatting of a template.
Template
HTML formatted Template
Type: String
Expressions (optional)
List of expressions which are used in the Template.
Type: Any
String
Formats a Template by replacing placeholders with they given Values.
Template
The Template to format.
Type: String
Values
The Values used to replace placeholders (e.g. ).
Type: Dictionary<Any,Any>
String
GetResourceValue
Returns the value of a resource, locale, and key. Returns NULL if either the resource or key are not found in either the locale or default locale.
Resource
The name of the resource.
Type: String
Locale (optional)
The name of the locale. Uses the language of the current user by default.
Type: String
Key
The key of the value.
Type: String
String
Gets the Index of a given Search in a String Value.
Value
The String Value to search.
Type: String
Search
The String to Search for.
Type: String
StartIndex (optional)
The Index to start the search from.
Type: Int
Count (optional)
The Count of Chars to search after the start.
Type: Int
Int
Takes a list of values as input, performs the toString method on each item and concatenates the given Values separated by the given Separator and returns the whole String.
Separator
String which is used to separate the elements.
Type: String
Values
List of elements which will be concatenated.
Type: List<Any>
String
Gets the Length of a given String Value.
Value
The String Value to get the Length of.
Type: String
Int
Search the Value for a RegEx-Pattern and returns first match and its groups.
Value
The Value to search in.
Type: String
Pattern
The RegEx-Pattern to search for.
Type: String
List<String>
Search the Value for a RegEx-Pattern and returns all matches and its groups.
Value
The Value to search in.
Type: String
Pattern
The RegEx-Pattern to search for.
Type: String
List<List<String>>
Searches an input string for all occurrences of a regular expression line for line.
Value
The string to search for a match.
Type: String
Pattern
RegEx-Pattern to match.
Type: String
List<String>
Pads the Value with the Padding character on the left side for a given Width.
Value
String which will be used as basis for the operation.
Type: String
Width
Length of the padding.
Type: Int
Padding (optional)
Char used as padding.
Type: Char
String
Pads the Value with the Padding character on the right side for a given Width.
Value
String which will be used as basis for the operation.
Type: String
Width
Length of the padding.
Type: Int
Padding (optional)
Char used as padding.
Type: Char
String
Replaces the Pattern Old with the Pattern New in the String Value.
Value
String which will be used as basis for the operation.
Type: String
Old
Pattern which is replaced.
Type: String
New
Value which is the replacement.
Type: String
String
Retrieves a substring thats starts at a specified character position and continues to the end of the string. The index of the first character is 0.
Value
String which will be used as basis for the operation.
Type: String
Index
Index position from which the String is cut off.
Type: Int
String
Returns a list of Strings by splitting the Value using a Separator.
Value
The Value to split.
Type: String
Separator
The Separator to split the Value.
Type: String
List<String>
Returns a copy of the original String ValueA with a specified length Length starting at the first character of the string.
Value
String the operation is performed on.
Type: String
Length
Length of the substring.
Type: Int
String
Strips HTML tags from the Value and returns the result.
Value
The Value to strip the HTML from.
Type: String
String
Returns a substring that starts at the character position Index and has a specified length Length. The index of the first character is 0.
Value
String used as basis for the operation.
Type: String
Index
Position, which is used as a starting point for the Substring.
Type: Int
Length
Length of the substring.
Type: Int
String
Takes a String as input and returns a copy of that String in lower case characters.
Value
String used as basis for the operation.
Type: String
String
Takes a String as input and returns a copy of that String in upper case characters.
Value
String used as basis for the operation.
Type: String
String
Represents a translator for languages.
Language
The Language to translate to.
Type: Language
Default
The Default text if no translation for the Language is found.
Type: String
Translations
The Translations where to search for the correct Language.
Type: List<Translation>
String
Represents a Translation for a Language.
Language
The Language of the Translation.
Type: Language
Text
The Translation text.
Type: String
Translation
Removes space characters on both sides of the String.
Value
String which is the basis of the operation.
Type: String
String
Removes space characters on the left side of the String.
Value
String which is the basis of the operation.
Type: String
String
Removes space characters on the right side of the String.
Value
String which is the basis of the operation.
Type: String
String