Current Forum: Homework 5 - Part 3 |
Date: Mon Nov 19 2001 10:12 pm |
Author: Cipriani, Jason A. <jac4@andrew.cmu.edu> |
Subject: Re: End of Line |
|
|
if you want to append an entire CRLF to the end of a string:
myString += "\r\n";
\n is a linefeed \r is a carriage return
|
|