Top "Carriage-return" questions

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

Formatting populated textarea, carriage returns, newlines, and HAML

When i populate a textarea with text using \r\n (carriage return - newline) the text is formatted improperly [UPDATE: \…

ruby-on-rails textarea newline haml carriage-return
SSIS: Can't handle line-feeds in CSV (Column delimiter not found)

I have some CSV files that appear OK in Notepad and Excel however seem to have extra line-feeds in them …

character-encoding ssis carriage-return linefeed
Why does Javascript only count carriage returns as one character when it is two?

This is an offshoot of this question: Chrome counts characters wrong in textarea with maxlength attribute In that question it …

javascript dom carriage-return
R read.csv how to ignore carriage return?

I need to read a text file (tab-separated) that has some carriage returns inside some fields. If I use read.…

r csv carriage-return read.table read.csv
Python 2.7 carriage return countdown

I'm having trouble implementing a simple countdown in python using a carriage return. I have two versions, each with problems. …

python python-2.7 carriage-return sys
How to explicitly set carriage return when doing json.dump?

My python script generates json file. And I have to support this python file working on windows and linux. The …

python json linux python-3.x carriage-return
How to read line by line a CR-only file with Perl?

I'm trying to read a file which has only CR as line delimiter. I'm using Mac OS X and Perl …

perl line-breaks carriage-return readfile linefeed
Removing carriage return characters from a file using python

import os import sys files = os.listdir(sys.argv[1]) for file in files: if file[-4:] == ".png": os.rename(file, …

python carriage-return