Does anybody know a library that would transform a String[][] into a String table as below?
| title1 | title2 | |________|________| | blah | blih | | blah2 | blih2 | etc...
I could write formatted strings for this, but it will be non-generic code, tied to the parameters. Writing generic code for this purpose would be more expensive than what I'm willing to invest.
So all in all, I think a library would be justified for this.
Any idea if this exists already?