CORESTRINGOPS
Use this function library perform String operations, such as append etc.
This section provides a list of functions in the library, along with the usage details.
appendStrings
Appends the inputs strings specified in the value 1 to value 6 columns in that sequence and stores the output into a global variable specified in the Output Variable Name column.
The function takes 6 parameters as inputs by default. If less than 6 strings have to concatenated, then provide #EMPTY in the value columns where test data need not be specified.
Usage:
appendStrings(String strValue1, String strValue2, String strValue3, String strValue4, String strValue5, String strValue6)
appendStrings("string1", "string2", "string3", "string4", "string5", "string6",)
 
Input Parameters:
strValue1: The base string
strValue2: The string to be appended to strValue1
strValue3: The string to be appended to strValue1+strValue2
strValue4: The string to be appended to strValue1+strValue2+strValue3
strValue5: The string to be appended to strValue1+strValue2+strValue3+strValue4
strValue6: The string to be appended to strValue1+strValue2+strValue3+strValue4+strValue5
 
Return Type: String