I have a string say message, whose length is not variable. But whatever the length is, I have to add 35 spaces to it before starting another method.
Suggestions Please?
Thanks!
Ex - String = "abc" , should become "abc" + 35 spaces;
No matter what the string is, I need to "Append" 35 spaces to the end of the string.