Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Convert Line Endings to CRLF
How to convert line endings to CRLF CkString str; // Append some text str.append("123\nABC\nxyz\r\n"); // Convert line endings to CRLF // Line endings that are already CRLF are left alone. str.toCRLF(); // The string now contains: "123\r\nABC\r\nxyz\r\n"
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.