- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
String filler = "";
int tot = text.length();
int til = 18 - (tot/100);
for(int i = 0; i < tot; i++)
{
if(text.charAt(i) == '\n')
{
text = text.substring(0, i) + "<br/>" + text.substring(i+1);
tot += 3; i += 3;
til--;
}
}