Tagged Questions
The carriage-return tag has no wiki summary.
17
votes
6answers
11k views
gVim showing carriage return (^M) even when file mode is explicitly DOS
I'm using gVim on Windows. My code shows ^M characters at the end of lines. I used :set ff=dos to no avail. The ^M characters remain for existing lines, but don't show up for newlines I enter. I've ...
14
votes
2answers
512 views
Port dos2unix to brainfuck
I got into an argument over on SuperUser.com about useless answers and found myself challenging the other poster to answer the question in brainfuck. He didn't take me up on it, but now I'm curious.
...
11
votes
6answers
232 views
Why does Windows use CR LF?
I understand the difference between the two so there's no need to go into that, but I'm just wondering what the reasoning is behind why Windows uses both CR and LF to indicate a line break. It seems ...
10
votes
6answers
20k views
Removing carriage return and new-line from the end of a string in c#
Guys how do I remove the carriage return character(\r) and the new line character(\n) from the end of a string?
9
votes
4answers
4k views
Visual studio find and replace - Add carriage return, OR Newline
In the case of following string to be parsed.
ford mustange,10,blue~~?bugatti veyron,13,black
I want to replace the ~~? with a carriage return
Replacing with \n just adds the string "\n"
I'm sure ...
9
votes
6answers
16k views
Remove carriage return in Unix
What is the simplest way to remove all the carriage returns /r from a file in Unix?
9
votes
3answers
2k views
String length differs from Javascript to Java code
I've got a JSP page with a piece of Javascript validation code which limits to a certain amount of characters on submit. I'm using a <textarea> so I can't simply use a length attribute like in a ...
6
votes
5answers
5k views
How can I remove “\r\n” from a string in c#? Can I use a regEx?
I am trying to persist string from an ASP.NET textarea. I need to strip out the carriage return line feeds and then break up whatever's left into a string array of 50 character pieces.
I have this so ...
6
votes
2answers
2k views
Should carriage return \r and new line \n always be used together? \r\n
In JavaScript this was a cross-browser compatibility issue, so both were used, but there are numerous instances in different languages where I see both printed out together as \r\n. Is this still the ...
5
votes
5answers
936 views
Preserving special chars in xml
I've an xml string stored in the db table with line feed characters.
In my C# 3.5 program, I load and manipulate it using Linq to xml and then show it as a string in the textbox control on the UI ...
5
votes
5answers
11k views
Carriage Return\Line feed in Java
i have created text file in unix enviroment using java code.
For writing the text file i am using java.io.FileWriter and BufferedWriter.
and for newline after each row i am using bw.newLine() method.
...
5
votes
6answers
2k views
Difference between \n and \r?
Whats the difference between \n (newline) and \r (carriage return)?
Edited to add: All the answers are fairly predictable, but I'd be interested to know if there are any PRACTICAL differences between ...
5
votes
8answers
17k views
In Perl, how to do you 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 end of the old line so the new fields end up on a new row instead of the same one. How do ...
4
votes
2answers
274 views
Carriage returns for textbox (textarea)
I have a textarea with attribute "wrap"="hard" (actually it's server side textbox, but with multiple text mode).
<asp:TextBox TextMode=MultiLine runat=server ID=txt Width=50 Height=50 ...
4
votes
8answers
347 views
4
votes
7answers
708 views
Gracefully remove “\n” delimiter after last String within StringBuilder
Have following Java code,that creates StringBuilder with "\n",i.e. carriage return delimiters:
while (scanner.hasNextLine()){
sb.append(scanner.nextLine()).append("\n");
}
It's occurred,that ...
4
votes
3answers
1k views
Python print statement prints nothing with a carriage return
I'm trying to write a simple tool that reads files from disc, does some image processing, and returns the result of the algorithm. Since the program can sometimes take awhile, I like to have a ...
4
votes
6answers
3k views
VisualForce: convert carriage returns to html line-breaks in a long text field
In Salesforce, if I'm binding a text field into a VisualForce page, whats a good way to convert the carriage returns in the text-field into HTML <br/> tags?
e.g. starting from something like ...
3
votes
5answers
83 views
Printing a new line in a file, in Java
I aim to make an index of all files with a particular extension and store it into index.txt. I am getting all the right results but not getting the 'files' onto the new line, this is a snapshot of my ...
3
votes
2answers
296 views
strip carriage returns from xml serialization in F#
update: some background - i use the xml file to generate a set of pdfs (through a java application that drives JasperReports). all the reports are coming out blank when I use this new xml file. I've ...
3
votes
4answers
1k views
What is the carriage return character in an AS/400 db?
I have a client running an AS/400. I have to ftp a flat file over to them. They tell me their return charaters are RN. I don't recognize this, could not find anything on it, and their tech guy is Nick ...
3
votes
7answers
2k views
AS3 TextField - unwanted carriage return when setting value to “”
I have an input TextField and have a KeyboardEvent.KEY_DOWN even listener on the stage to listen for the Keyboard.ENTER event. The event listener adds the entered text to an array or whatever, and ...
3
votes
2answers
961 views
SVN Update adds ^M when conflicts?
We've been working on some files at the same time. Occasionally, when we "svn up" we'll see files with "^M"'s appended to every line of certain files. We originally blamed each other's editors >_>. ...
3
votes
4answers
1k views
Can you force Vim to show a blank line at the end of a file?
When I open a text file in Notepad, it shows a blank line if there is a carriage return at the end of the last line containing text. However, in Vim it does not show this blank line. Another thing ...
3
votes
4answers
2k views
Post newline/carriage return as hidden field value
I need to post multi-line data via a hidden field. The data will be viewed in a textarea after post. How can I post a newline/carriage return in the html form?
I've tried \r\n but that just posts ...
2
votes
1answer
21 views
ASP MVC possible encoding issue showing carriage returns in HTML output
This is a weird one,
I have an ASP MVC 3 project (developed for Chrome only support), and in the last couple of weeks I noticed this weird character appearing in the HTML output.
Example here
I ...
2
votes
1answer
47 views
AIX diff -b broken?
I'm trying to compare files ignoring carriage returns - which diff -b on any other unix performs admirably. But on this AIX 5.3 box:
tst1:tst2$ od -c testfile
0000000 t h i s \r \n f ...
2
votes
2answers
59 views
In vim, how can I add a carriage return to a register using setreg?
I have this command in my .vimrc:
vip:normal @g<CR>
When I set the register 'g' by typing in the buffer, like this, it works:
qg<CR>jq
If I type :registers, it shows:
--- Registers ...
2
votes
1answer
124 views
Powershell - Carriage returns inserted in output when I use '>'
How do I stop this command from dumping carriage returns into my output:
get-content inFILE | select-string "string" > outFILE
Text that was non-wrapped or lacking carriage return suddenly has a ...
2
votes
2answers
143 views
How to match whitespace, carriage return and line feed using regular expression in PHP?
I am working with a regular expression in PHP. I have the following string:
<img
src="/files/admin/hotel_website.gif" alt="Go To The Hotel's Web
Site" align="absmiddle" border="0" ...
2
votes
1answer
73 views
XSLT transformation adding unwanted Linefeed
Using Vs 2010 I am editing a xsl file which will be used for transformation to output an xml file. I am trying to output a carriage return (
) and that only. I don't want the linefeed character ...
2
votes
3answers
299 views
C++ how to overwrite a character in console, return carriage to start of line doesn't seem to work
My question is, how do I get the numbers 10 - 0 to print out on the same line, overwriting each other using either a WIN32 or GNUC compiler in a simple manner like my code below:
This is what I have ...
2
votes
4answers
216 views
What is the point of using *both* Carriage Returns and Line Feeds?
I'd have thought one was enough. But what's the point of doing CRLF (0x0D0A), when you can simply use CR (0D)? Normally, whenever I'm using strings (C++), I do this:
myString = "Test\nThis should be ...
2
votes
3answers
510 views
Dealing with the lone carriage return as end of line symbol
So I have a program that gets rid of extra line breaks in fasta files copy and pasted from the web. If you don't know what a fasta file should look like, it should be a greater than symbol followed ...
2
votes
2answers
196 views
what is the significance of carriage return in context of javascript-php?
I am entering data in the text field of my form that contains 2 new line character but no carriage return character. (I can confirm by strlen in js or using str.charCodeAt() function.)
Now I submit ...
2
votes
1answer
2k views
Add carriage return to string resource in WPF
My applications store all localized text in a string resource dictionary as suggested here http://msdn.microsoft.com/en-us/library/bb295251(VS.85).aspx
<ResourceDictionary
...
2
votes
4answers
248 views
Why do I get extra line breaks in the web page I download with Perl?
I'm writing a simple Perl script (on Windows) to download the response of a get request to a url to a file. Pretty straight-forward. Except when it writes to the output file, I get extra line breaks. ...
2
votes
2answers
1k views
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: \r\n is what is generated when filling out a textarea, i'm simply pulling from a ...
2
votes
1answer
308 views
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 v.5.8.8. This script should run on every platform, for every kind of line delimiter (CR, LF, CRLF).
My ...
2
votes
1answer
578 views
Why does a carriage-return character disappear when converting a string to SQL Server XML datatype?
Whenever I parse a string to SQL XML datatype I notice that carriage-returns disappear whenever whitespace and XML carriage returns are mixed. If they are not mixed things work fine. Does anyone know ...
2
votes
2answers
935 views
Making CSV from PHP - Carriage return won't work
Seems like a fairly simple issue but can't get it to work. I am getting the user to download a csv file(which works fine).
Basically I can't get the carriage return to work.
header("Content-type: ...
2
votes
14answers
3k views
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 save this string: "This\rIs\r\nA\nString"
Instead of showing
This
Is
A
String
I'm looking for ...
2
votes
6answers
364 views
What is the difference between “\r” and “\n”? [closed]
Possible Duplicate:
What is the difference between \r and \n?
I understand that it's different for each Operating System, for example, "\r\n" may be expected in Windows, "\n" may be ...
2
votes
5answers
3k views
SQL query for a carriage return in a string and ultimately removing carriage return
SQL query for a carriage return in a string and ultimately removing carriage return
I have some data in a table and there are some carriage returns in places where I don't want them. I am trying to ...
2
votes
4answers
5k views
MySQL: carriage-return in query
I have a query that exports data from two columns of each row into a file. In the file data from each column should be separated by carriage-return, something like this:
row1column1
row1column2
...
2
votes
2answers
263 views
Is there a standard for line break characters in web forms?
Can I expect line breaks in text boxes to be one of the common line break conventions or does it depend on the user's OS?
i.e.: CR or CR+LF or LF
2
votes
4answers
164 views
Will 20 year old compatibility issues exist 20 years in the future?
There is nothing like the 43rd day of your life spent tracking down issues due to CR/LF, different slash types, or a Big Endian vs. Little Endian bug. These issues are 20 years old and they make me ...
2
votes
5answers
848 views
Carriage return required when printing to the console in Windows?
It seems like just putting a linefeed is good enough, but I know it is supposed to be carriage return + line feed. Does anything horrible happen if you don't put the carriage return and only use line ...
1
vote
2answers
51 views
Carriage return and line feed XML - Java
I am trying to add a carriage return character and line feed character to format XML so that each element appears on its own line in MS Notepad.
I have tried what was suggested here: how to pretty ...
1
vote
2answers
36 views
Zipping a text file on my mac destroys carriage control on Windows
I have a file on my Mac which has been run through unix2dos to provide Windows style carriage return. For example, here's the top part of the file:
$ od -c ../README.txt | head
...
0000020 ...