Module for EDI 9.12 | Building Services with EDI Module | Part I WmEDI Package | WmEDI Util Folder | Summary of Elements in this Folder | wm.b2b.edi.util:concatStringArray
 
wm.b2b.edi.util:concatStringArray
WmEDI. Creates a String from the input parameters.
The String starts with the value of the input parameter prepend, followed the value of each element in the input parameter stringArray, and end with the value of the input parameter append. For example, if the input values were:
*stringArray:
*String1
*String2
*prepend: String to prepend
*append: String to append
The final string would be:
String to prependString1String2String to append
Input Parameters
stringArray
String List An array of Strings to be concatenated.
prepend
String String value to prepend on to the final result.
append
String String value to append on to the final result.
Output Parameters
concated
String The concatenated String.