How would I go about doing this? Here's what I have that works:

Code:
string shipheight = "\n\n\n\n\n\n\n\n\n\n\n\n";
shipheight += "\n";
This would come out with one more line. This doesn't work though:

Code:
shipheight -= "\n";
I want it to take away a line. How could I do that?