RyanHeidorn
10 years agoStaff
Hi Alex,
This is already possible within LoadComplete. From the documentation on variable creation (see full article here):
-
To concatenate the values of several variables:
Regular Expression Subexpression Save to Variable Decode @Var1@Var2@Var3 $1 ConcatVar Do not decode The values of the Var1, Var2 and Var3 variables will be concatenated and saved to ConcatVar. For example, if
Var1 = 12
,Var2 = oct
andVar3 = 13
, the ConcatVar variable will contain "12oct13
". If you specify Upper case in the Decode cell, the result will be "12OCT13
".
Hope this helps.