I am currently trying to modify a script for a SSIS project to import data from a dynamic .txt file (sometimes colums are added).
I am new to c# and the only problem in the script is that it contains a string format expression that I really can't graps so my question is:
What does this do?
string _Statement = String.Format ("{0}(?=(?:[^{1}]*{1}[^{1}]*{1})*(?![^{1}]*{1}))"
The parameters are
{0} = First line in the file containing all the column headers
{1} = Semicolon delimiter
Any help in this would be much appreciated.