Hello everyone here,
I want to be able to read from file or DB and place lines on a page in Matrix form. This is what I mean, say I read a file to an array or list(of string), so that I have the lines like this
1.aaaa,bbbb,ccc
2.5533ds,iodfas,ssss
- 2211,bbb,eeee
- yyyy,hhhh,uuuu
- dddd,wwww,aaaa
- bbbb,xxxxx,uuuu
- nnnn,iiiiii,tttttt
- oooo,yyyyy,eeee
- pppp,sssss,tttttt
so puting them in matrix like 3x3, I want to have something like
aaaa,bbbb,ccc --- 5533ds,iodfas,ssss --- 2211,bbb,eeee
yyyy,hhhh,uuuu --- dddd,wwww,aaaa --- bbbb,xxxxx,uuuu
nnnn,iiiiii,tttttt --- oooo,yyyyy,eeee --- pppp,sssss,tttttt
Thank you.