KNOWLEDGE BASE

Joining Strings

On This Page

Joining Strings

EDIFileJoiner is capable of joining any number of X12 EDI strings into one.

Example

EDIFileJoiner joiner = new EDIFileJoiner();
 
// Join the strings at the ST header level
joiner.FileJoinLevel = FileJoinLevel.HEADER;

// Specify the list of files to join
List<string> dataList = new List<string>();
dataList.Add(“ISA*….”);
dataList.Add(“ISA*….”);
dataList.Add(“ISA*….”);
dataList.Add(“ISA*….”);

// Join the strings
string combinedEDIStrings = joiner.JoinStrings(dataList);

Article Details

Need More Help?

Can't find the answer you are looking for? Our support team can help.