Sorry for my previous solution.
You can use <br/> to split it for every 15 characters.
Example if the result of the line is 1234567890123456 . Failed 123456789012345<br/>6
Here is the code snippet:
string myString = "mondayfridaysaturday"; string result = string.Empty; for (int i=0; i<myString.Length; i++) result += (i%14==0&&i!=0) ? (myString[i].ToString()+"<br/>") : myString[i].ToString();
Edy cu
source share