Hi,
I have two strings as below:
I would like to produce a new string c with the output:
A, From, FlowA; B, To, FlowB; C, From, FlowC; C, To, FlowD;
Is that anyway for me to do it?
Thank.
I have two strings as below:
Code:
string a = "A, 0001; B, 0002; C, 0003;"; string b = "0001, From, FlowA; 0002, To, FlowB; 0003, From, FlowC; 0003, To, FlowD;";
A, From, FlowA; B, To, FlowB; C, From, FlowC; C, To, FlowD;
Is that anyway for me to do it?
Thank.
Comment