string []tableEven = new string [3] ;
string []tableOdd = new string [3] ;
int Loc = 0 ;
foreach(string s in table1)
{
tableEven [ Loc ] = "" ;
tableOdd [ Loc ] = "" ;
for ( int i = 0 ; i < s.Length )
{
tableEven [ Loc ] = tableEven [ Loc ] + s [ i ] ;
tableOdd [ Loc ] = tableOdd [ Loc ] + s [ i + 1 ] ;
i = i + 2 ;
}
tableEven [ Loc ].Trim(); // remove 1 extra space
tableOdd [ Loc ].Trim(); // remove 1 extra space
Loc = Loc + 1 ;
}