Hi All,
I am using a String formatting which separates two strings using the "\t" (tab) character like below:
String _str = "col1" + "\t" + "col2" + "\t" + "col3";
I get the following output:
col1 col2 col3.
this is fine. But because i have a horizontal restriction to abide to. i need to control the tab size or the spaces left blank the "\t". i.e I wish to have col1, col2, col3 closer to each other than what i caused by the tab.
Please help! Urgent issue.
Thanks,
Ashok.