Tagged Questions

Newline refers to a character sequence representing a line break in text (also known as End of Line, EOL, or Line Break). Different operating systems have different sequences for newlines.

learn more… | top users | synonyms

133
votes
9answers
109k views

How can I remove (chomp) a newline in Python?

This is one of my most common questions when I am coding Python (I was fed Perl as a baby and am forever trying to get rid of that affliction) and I wanted to put it out there on stack overflow so ...
77
votes
20answers
82k views

SED: How can I replace a newline (\n)?

I unsuccesfully tried: sed 's#/\n# #g' file sed 's#^$# #g' file How to fix it?
54
votes
14answers
39k views

Pass a PHP string to a Javascript variable (including escaping newlines)

What is the easiest way to encode a PHP string for output to a Javascript variable? I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a ...
39
votes
5answers
23k views

Java: How do I get a platform independent new line character?

How do I get a platform independent newline in java? I can't use "\n" everywhere.
34
votes
4answers
43k views

Split Java String by New Line

I'm trying to split text in a JTextArea using a regex to split the String by \n However, this does not work and I also tried by \r\n|\r|n and many other combination of regexes. Code: public void ...
30
votes
2answers
12k views

Capturing multiple line output to a bash variable

I've got a script 'myscript' that outputs the following: abc def ghi in another script, I call: declare RESULT=$(./myscript) and $RESULT gets the value abc def ghi Is there a way to store the ...
25
votes
13answers
3k views

Why should files end with a newline?

I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?
22
votes
4answers
8k views

Replace a newline in TSQL

I would like to replace (or remove) a newline character in a TSQL-string. Any Ideas? (UPDATE) The obvious REPLACE(@string,CHAR(13),'') just won't do it...
21
votes
5answers
7k views

git-diff to ignore ^M

In a project where some of the files contains ^M as newline separators. Diffing these files are apparently impossible, since git-diff sees it as the entire file is just a single line. How does one ...
19
votes
7answers
7k views

VIM Disable Automatic Newline At End Of File

So I work in a PHP shop, and we all use different editors, and we all have to work on windows. I use vim, and everyone in the shop keeps complaining that whenever I edit a file there is a newline at ...
19
votes
5answers
15k views

How do I handle newlines in json?

I've generated some JSON and I'm trying to pull it into an object in javascript and I keep getting errors. Here's what I have: var data = '{"count" : 1, "stack" : "sometext\n\n"}'; var dataObj = ...
17
votes
7answers
17k views

How do I add a newline to a TextView in Android?

When I define in a TextView in XML, how do I add new line to it? \n seams to not work. <TextView android:id="@+id/txtTitlevalue" android:text="Line1: \n-Line2\n-Line3" ...
16
votes
1answer
8k views

Newline in a WPF-label?

How can I add a newline in the text of a label in WPF such as the following? <Label>Lorem ipsum</Label>
15
votes
5answers
10k views

How to add line break for UILabel?

Let see that I have a string look like this: NSString *longStr = @"AAAAA\nBBBBB\nCCCCC"; How do I make it so that the UILabel display the message like this AAAAA BBBBB CCCCC I ...
15
votes
3answers
7k views

How to save newlines in XML attribute?

I need to save content that containing newlines in some XML attributes, not text. The method should be picked so that I am able to decode it in XSLT 1.0/ESXLT/XSLT 2.0 What is the best encoding ...
14
votes
4answers
4k views

eclipse and windows newlines

I had to move my eclipse workspace from Linux to windows when my desktop crashed. A week later I copy it back to Linux, code happily, commit to cvs. And alas, windows newlines have polluted many ...
14
votes
3answers
12k views

ASP.NET MVC Html.Encode - New lines

Html.Encode seems to simply call HttpUtility.HtmlEncode to replace a few html specific characters with their escape sequences. However this doesn't provide any consideration for how new lines and ...
13
votes
8answers
19k views

How do I include a newline character in a string in Delphi?

I want to create a string that spans multiple lines to assign to a Label Caption property. How is this done in Delphi?
13
votes
13answers
27k views

How can I replace newline characters using JSP and JSTL?

I have a list of bean objects passed into my JSP page, and one of them is a comment field. This field may contain newlines, and I want to replace them with semicolons using JSTL, so that the field can ...
12
votes
5answers
2k views

Is there a C++ iterator that can iterate over a file line by line?

I would like to get an istream_iterator-style iterator that returns each line of the file as a string rather than each word. Is this possible?
11
votes
10answers
483 views

How to eliminate ALL line breaks in string?

I have a need to get rid of all line breaks that appear in my strings (coming from db). I do it using code below: value.Replace("\r\n", "").Replace("\n", "").Replace("\r", "") I can see that ...
11
votes
10answers
22k views

using fstream to read every character including spaces and newline

I wanted to use fstream to read a txt file. I am using inFile >> characterToConvert, but the problem is that this omits any spaces and newline. I am writing an encryption program so i need to ...
10
votes
2answers
2k views

How line ending conversions work with git core.autocrlf between different operating systems

I've read a lot of different questions and answers on Stack Overflow as well as git documentation on how the core.autocrlf setting works. This is my understanding from what I've read: Unix and Mac ...
10
votes
5answers
4k views

How can Perl's print add a newline by default?

In Perl most of my print statements take the form print "hello." . "\n"; Is there a nice way to avoid keeping all the pesky "\n"s lying around? I know I could make a new function such as myprint ...
10
votes
1answer
378 views

Portable way to determine the platform's line separator

Different platforms use different line separator schemes (LF, CR-LF, CR, NEL, Unicode LINE SEPARATOR, etc.). C++ (and C) make a lot of this transparent to most programs, by converting '\n' to and ...
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?
10
votes
3answers
17k views

PHP Echo Line Breaks

I'm pretty sure this has already been answered, but for the life of me I could not find the question or answer after browsing/searching StackOverflow for the last 20 minutes. Anyway, the question: ...
9
votes
3answers
7k views

NSString with \n or line break

Does anyone know how to use line breaks in NSString? I need to do something like this - [NSString stringWithFormat:@"%@,\n%@", mystring1,mystring2];
9
votes
4answers
685 views

Python thinks a 3000-line text file is one line long?

I have a very long text file that I'm trying to process using Python. However, the following code: for line in open('textbase.txt', 'r'): print 'hello world' produces only the following ...
9
votes
13answers
21k views

How do I append a newline character for all lines except the last one?

I'm iterating through a HashMap (see my earlier question for more detail) and building a string consisting of the data contained in the Map. For each item, I will have a new line, but for the very ...
9
votes
2answers
7k views

How do i remove all linebreaks using XSLT?

I have something like this: <node TEXT=" txt A "/> <node TEXT=" txt X "/> <node> <html> <p> txt Y </p> </html> ...
9
votes
11answers
6k views

'^M' character at end of lines

When I run a particular SQL script in Unix environments, I'm am seeing a '^M' character at the end of each line of the SQL script as it is echoed to the command-line. I don't know on which OS the SQL ...
8
votes
4answers
164 views

When does a new __LINE__ start?

I do not understand the output of the following program: #include <iostream> #define FOO std::cout << __LINE__ << ' ' \ << __LINE__ << '\n'; int ...
8
votes
2answers
680 views

Common Lisp's equivalent of \r inside the format function?

Basically, I'd like to do the following, only using Common Lisp instead of Python: print("Hello world.\r\n") I can do this, but it only outputs the #\newline character and skips #\return: (format ...
8
votes
7answers
5k views

How to convert dos/windows newline to unix newline in bash script?

I bash, how do I convert dos/windows newlines to unix? It must be non-interactive, not like starting vi and typing something in, but a command on the command line that can be put in a script file. The ...
8
votes
7answers
2k views

How to make G++ preprocessor output a newline in a macro?

Is there a way in gcc/g++ 4.* to write a macro that expands into several lines? The following code: #define A X \ Y Expands into X Y I need a macro expanding into X Y
8
votes
7answers
27k views

How to remove line breaks from a file in Java?

How can I replace all line breaks from a string in Java in such a way that will work on Windows and Linux (ie no OS specific problems of carriage return/line feed/new line etc.)? I've tried (note ...
8
votes
2answers
4k views

How to do a newline in output

as a warning I am completly new to Ruby (been learning for 1 day) so please explain in simple terms. how do I make \n actually work in my output? At the moment it just writes it all in 1 long block. ...
8
votes
3answers
1k views

What's up with Java's “%n” in printf?

I'm reading Effective Java and it uses %n for the newline character everywhere. I have used \n rather successfully for newline in Java programs. Which is the 'correct' one? What's wrong with '\n' ? ...
8
votes
5answers
3k views

Unix newlines to windows newlines (on Windows)

Does anyone know of a way (say Powershell, or a tool) in Windows that can recurse over a directory and convert any unix files to windows files. I'd be perfectly happy with a way in Powershell to at ...
7
votes
3answers
171 views

Why does Ruby's 'gets' includes the closing newline?

I never need the ending newline I get from "gets". Half of the time I forget to chomp it and it is a pain in the. Why is it there?
7
votes
4answers
1k views

PHP Linefeeds (\n) Not Working

For some reason I can't use \n to create a linefeed when outputting to a file with PHP. It just writes "\n" to the file. I've tried using "\\n" as well, where it just writes "\n" (as expected). But ...
7
votes
10answers
1k views

What are these ^M's that keep showing up in my files in emacs?

So I think it may have to do with textmate, but we work in a small team and are having some issues with full-file conflicts of nearly identical files in git because each line of one branch has a ^M ...
7
votes
3answers
1k views

C++ change newline from CR+LF to LF

I am writing code that runs in Windows and outputs a text file that later becomes the input to a program in Linux. This program behaves incorrectly when given files that have newlines that are CR+LF ...
7
votes
3answers
5k views

How to get UITextView to respect newlines in Interface Builder?

I have a simple app with a UITextView embedded into a UIScrollView. Interface Builder won't let me add multiple newlines for spacing; when I hit return it sees that as "end of input" rather than ...
7
votes
3answers
2k views

Is there an equivalent of BufferedReader.readLine() that lets me pick what my end of line characters are?

The Javadoc for BufferedReader.readLine() says: A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followed immediately by a ...
7
votes
8answers
8k views

how do you search for files containing dos line endings (CRLF) with grep under linux?

something like grep -IUr --color '\r\n' . the above seems to match for literal 'rn' which is not what is desired the output of this will be piped through xargs into todos to convert crlf to lf like ...
6
votes
1answer
85 views

commenting restriction

In ruby 1.9, conditions on where to end a line was relaxed, so that we can now start a line with a period showing a method call. This is convenient when we have chained and non-chained methods mixed ...
6
votes
3answers
191 views

Replace newlines, but keep the blank lines

I want to replace newlines (\r\n) with space, but I want to keep the blank lines. In other words, I want to replace \r\n with ' ', if \r\n is not preceded by another \r\n. For example: line 1 line 2 ...
6
votes
1answer
1k views

Problems with newline in Graphics2D.drawString

g2 is an instance of the class Graphics2D. I'd like to be able to draw multi-line text, but that requires a newline character. The following code renders in one line. String newline = ...

1 2 3 4 5 16