| Replies
|
|
|
sakurag
|
Posted at 8:57 pm on Dec. 21, 2008 |
| I would recommend you type out some indents and then programmatically output the ascii value? |
|
|
h a t t
|
Posted at 6:01 pm on Dec. 21, 2008 |
| if you create a char variable and give it the value of 9 it'll be a tab. i.e. | Code: | public static void main(String[] args) { char tab = 9; System.out.println("blah" + tab + "fasdf"); } | so yeah, 9 is the ascii number for the tab. |
|
|
matto
|
Posted at 8:14 pm on Dec. 2, 2008 |
| A character that represents an indent? All I can think of is tab... "\t". |
|
|
Solitude
|
Posted at 3:14 am on Nov. 16, 2008 |
| I don't think it's possble |
|
|
All 4 previous replies displayed. |