Hi Experts,
Please help me, i am writing code for csv conversion, in middle i facing one issue. i have one array which contains 3 elements like wise
@array contanis:
var1= '455,0,0,0,0\n
135,0,0,0,0\n
199,0,0,0,0\n',
var2= '131.253.4.131,1,0\n
131.253.7.54,1,0\n
10.80.5.3,1,0\n';
i need to convert like wise as below
var1= '455,0,0,0,0 , 131.253.4.131,1,0\n
135,0,0,0,0, 131.253.7.54,1,0\n
199,0,0,0,0', 10.80.5.3,1,0\n';
Thanks in Advance,
Senthil. V