Top "Carriage-return" questions

Carriage return is one of the control characters in ASCII code, Unicode, EBCDIC, and many other codes.

How can I remove "\r\n" from a string in C#? Can I use a regular expression?

I am trying to persist string from an ASP.NET textarea. I need to strip out the carriage return line …

c# asp.net string carriage-return
What's the Use of '\r' escape sequence?

I have C code like this: #include<stdio.h> int main() { printf("Hey this is my first hello …

c++ c escaping carriage-return
Text Editor which shows \r\n?

I'm looking for a text editor that can show me the actual carriage returns and newlines. E.g. if I …

text text-editor newline carriage-return
Inserting line breaks into PDF

I'm generating some PDF file on the fly using PHP. My problem is I need to insert line breaks in …

php pdf fpdf carriage-return
Find and replace - Add carriage return OR Newline

In the case of following string to be parsed. ford mustang,10,blue~~?bugatti veyron,13,black I want to replace the ~~? …

visual-studio replace carriage-return
Carriage return and Line feed... Are both required in C#?

When inserting a new line character into a string I have usually done this: str = "First line\nSecond line"; In …

c# carriage-return linefeed
Create Carriage Return in PHP String?

We have written a small PHP Hook for our billing system that opens a new support ticket with us when …

php string carriage-return whmcs
In Perl, how to remove ^M from a file?

I have a script that is appending new fields to an existing CSV, however ^M characters are appearing at the …

perl carriage-return hidden-characters
Does Windows carriage return \r\n consist of two characters or one character?

Windows carriage return is \r\n while it is \n in Unix, is \r\n treated as two characters?

carriage-return