Skip to content

String

String - Compare

Gets if strings are equal

IN

Name Type Description
InText1 String The first string.
InText2 String The second string.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutAreEqual Bool True if strings are equal.
Error ErrorState Gets the execution error message

String - Concat

Concats two strings

IN

Name Type Description
InText1 String The first string.
InText2 String The second string.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutTextConcat String The concatenated string.
Error ErrorState Gets the execution error message

String - Contains

Checks if string contains a defined value

IN

Name Type Description
InText String The input string.
InToFind String The string to find.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutContains Bool True if string contains the value.
Error ErrorState Gets the execution error message

String - EndsWith

Checks if string ends with a defined value

IN

Name Type Description
InText String The input string.
InToFind String The string to find.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutEndsWith Bool True if string ends with the defined value.
Error ErrorState Gets the execution error message

String - Join

Joins string array with a defined separator value

IN

Name Type Description
InTextArray StringArray The input strings.
InSeparator String The separator value.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutJoinedText String The joined text.
Error ErrorState Gets the execution error message

String - Length

Gets the length of a string

IN

Name Type Description
InText String The input string.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutLength Int The length.
Error ErrorState Gets the execution error message

String - StringToBool

Convert a string to bool

IN

Name Type Description
InText String The input string.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutBool Bool The bool value.
Error ErrorState Gets the execution error message

String - StringToFloat

Convert a string to float

IN

Name Type Description
InText String The input string.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutFloat Float The float value.
Error ErrorState Gets the execution error message

String - StringToInt

Convert a string to int

IN

Name Type Description
InText String The input string.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutInt Int The int value.
Error ErrorState Gets the execution error message

String - Parse

Converts the provided string into specific type. If the input string contains multiple items, then each item must be separated by semicolon and in this case the output value will be vectorized, containing the same number of parsed elements.If the input string represents an array of elements or a struct, then the text must be enclosed between '{ }' to indicate the end of the array or struct and inner elements must be separated by semicolon.

IN

Name Type Description
InText String The input string representing the value, array or struct to be parsed.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutValue T The parsed value
Error ErrorState Gets the execution error message

String - Remove

Removes part of a string

IN

Name Type Description
InText String The input string.
InIndex Int The removing start index.
InCount Int The removing count.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutModifiedText String The modified string.
Error ErrorState Gets the execution error message

String - Replace

Replaces a string value with a new one

IN

Name Type Description
InText String The input string.
InTextOld String The text to be replaced.
InTextNew String The new text to replace.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutModifiedText String The modified text.
Error ErrorState Gets the execution error message

String - Split

Splits a string using a given separator

IN

Name Type Description
InText String The input string.
InSeparator String The separator value to use for splitting.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutTextArray StringArray The splitted array text.
Error ErrorState Gets the execution error message

String - StartsWith

Checks if string starts with a defined value

IN

Name Type Description
InText String The input string.
InToFind String The string to find.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutStartsWith Bool True if string starts with the defined value.
Error ErrorState Gets the execution error message

String - SubString

Gets a sub-string from a given string

IN

Name Type Description
InText String The input string.
InIndex Int The start index.
InCount Int The sub-string length.
Name String Set the tool's name
Enable Bool Sets if current tool is enabled or not

OUT

Name Type Description
OutSubText String The result sub-string.
Error ErrorState Gets the execution error message