String Manipulation Generators
Description The CompareStringGen Generator returns ‘true’ or ‘false’ based on whether two string values are equal [EQ] or not equal [NE]. The compared stri...
Sun, 25 May, 2025 at 9:33 AM
Description The ConcatGen Generator combines (concatenates) two or more values together and returns a single string result. Concatenated values can be r...
Sat, 31 May, 2025 at 1:23 PM
Description The ConstantGen Generator generates a constant, non-changing value. Here are a few ways you can use it to generate constant values: String (e...
Mon, 17 Mar, 2025 at 4:37 PM
Description The EncryptGen Generator encrypts a string using various encryption algorithms. New Attributes with "password" as part of the Attribu...
Mon, 2 Jun, 2025 at 6:01 PM
Description The MatchStringGen Generator checks a string for a value match using a contains, startsWith, or endsWith matching function. You can check a con...
Fri, 16 May, 2025 at 2:48 PM
Description The NumberToWordsGen Generator references any other Generator that generates a number and then converts the number into words. You can use it t...
Fri, 6 Jun, 2025 at 3:51 PM
Description The RandomStringGen generates a random string based on the lengths passed. The string can be letters, numbers, alphanumeric characters, or ASCI...
Mon, 9 Jun, 2025 at 10:07 AM
Description The StringRemoveGen is designed to remove a specific token from a referenced value and returns the modified result. You can remove all occurren...
Mon, 9 Jun, 2025 at 7:47 AM
Description The StringReplacementGen returns a string replacing all sequences of characters matching the regex and replacement string. Regex or regula...
Mon, 9 Jun, 2025 at 6:38 PM
Description The StringSplitIndexGen splits the referenced String based on a delimiter, which in turn creates an internal list. The elements from the list c...
Wed, 11 Jun, 2025 at 5:31 PM