Tagged Questions
EOL is short for "end of line". In text files each line is terminated with characters such as linefeed or carriage return or a combination thereof.
55
votes
12answers
46k views
When do I use the PHP constant “PHP_EOL”?
When is it a good idea to use PHP_EOL? I sometimes see this in code samples of PHP. Does this handle DOS/Mac/Unix endline issues? Most of the PHP I write is for generating HTML, and I use <br/> ...
42
votes
4answers
15k views
What's the best CRLF handling strategy with git?
I tried committing files with CRLF-ending lines but it failed.
I spent a whole work day on my Windows computer trying different strategies, and was almost drawn to stop trying to use git and instead ...
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.
32
votes
6answers
10k views
Is it possible for git-merge to ignore line-ending differences?
Is it possible for git merge to ignore line-ending differences?
Maybe I'm asking the wrong question ... but:
I tried uisng config.crlf input but things got a bit messy and out of control, specially ...
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:
...
7
votes
4answers
971 views
Historical reason behind different line ending at different platforms
Why did DOS/Windows and Mac decide to use \r\n and \r for line ending instead of \n? Was it just a result of trying to be "different" from Unix?
And now that Mac OS X is Unix (-like), did Apple ...
6
votes
9answers
597 views
Is \n multi-character in C?
I read that \n consists of CR & LF. Each has their own ASCII codes.
So is the \n in C represented by a single character or is it multi-character?
Edit: Kindly specify your answer, rather than ...
6
votes
1answer
378 views
How to avoid mixed eol-styles in a svn repository
Is there a best practice for preventing mixed eol-styles in a subversion repository.
I know that svn:eol-style=native can be set as an auto-prop, but I would have to ensure that it was set for all ...
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.
...
4
votes
3answers
69 views
CSS end of line character
Okay, what I want is this:
When the <p> tag ends with </p>, I want to add a character at the end of the line. For example
<p>Something and more!</p>
Should look like
...
4
votes
5answers
792 views
How to find a windows end of line (EOL) character
I have several hundred GB of data that I need to paste together using the unix paste utility in Cygwin, but it won't work properly if there are windows EOL characters in the files. The data may or may ...
4
votes
5answers
1k views
C++ portable end of line
is there any way to automatically use correct EOL character depending on the OS used?
I was thinking of something like std::eol?
I know that it is very easy to use preprocessor directives but ...
4
votes
1answer
1k views
How do I parse end-of-line with boost::spirit::qi?
Shouldn't a simple eol do the trick?
#include <algorithm>
#include <boost/spirit/include/qi.hpp>
#include <iostream>
#include <string>
using boost::spirit::ascii::space;
using ...
4
votes
7answers
2k views
in Vim how do I hide the eol doc chars ^M
in gvim on windows if I have text with CRLF eol then the text will display ^M at the end of each line.
How do I 'hide' that special char from display?
the :set nolist command """ does not dismiss ...
4
votes
1answer
560 views
Regular Expression to match cross platform newline characters
My program can accept data that has newline characters of \n, \r\n or \r (eg Unix, PC or Mac styles)
What is the best way to construct a regular expression that will match whatever the encoding is?
...
4
votes
3answers
174 views
Get system specific line break in .net
Is there a way to get the current systems line break character(s) in the .net framework?
4
votes
6answers
1k views
Can git-svn be made to handle CRLF like native subversion clients?
I have a subversion repository hosted on Linux but only ever accessed via windows clients as it's for the source of a large Windows application.
It would be awesome if I could work on this repository ...
3
votes
2answers
61 views
Choose newline character in Notepad++
I notice that when I load a text file, Notepad++ will recognize and use whatever the newline character in that file is, \n or \r\n.
Is there some option where I can select which to use in a new ...
3
votes
1answer
110 views
Convert the end of line pattern in a Mercurial repository
I have a repository that was populated with files with Windows end of line markers, but I intended to use the Unix EOL pattern.
One option is to manually (dos2unix) change all the files, then commit ...
3
votes
3answers
1k views
How to change the line ending used in Netbeans
Netbeans has this wiki entry on line endings: http://wiki.netbeans.org/FaqEditorEOLs
But it isn't very useful. It just says that you shouldn't develop on different OS and that's that...
In my ...
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 >_>. ...
2
votes
3answers
104 views
Find first of operation on a char pointer
I have a char buffer which contains characters read from a file. I need to take this char buffer and find the first end of line character within it.
EOL characters in this case are \n,\r,\f.
...
2
votes
1answer
469 views
Force svn:eol-style=native on the server?
Currently, in order to ensure the subversion property eol-style is set to native for each new file added to our project, we have to add this to the ~/.subversion/config file on each of our developers ...
2
votes
1answer
522 views
Cross platform development using Git (EOL issue)
In our development environment we use Windows, Mac, and Linux. I am having trouble when it comes to the commit -> pull -> push work flow.
The problem is end of line characters. If someone makes ...
2
votes
1answer
144 views
CVS to Mercurial conversion with CRLF
I have converted a CVS repository to Mercurial, but the carriage returns are converted from CRLF (Windows style) to LF (Unix style). However, I want CRLFs in the repository! I realise that you can ...
2
votes
3answers
612 views
CVS to Mercurial conversion: end of line problem
I recently converted a CVS repository to Mercurial. From the looks of it, everything went perfect. Except that every end-of-line character is in Unix style and I want them in Windows style.
I know ...
2
votes
1answer
535 views
vim: showing listchars changes the screen wrapping
I noted that when I show up the EOL listchars in a text the linebreaks are losen
p.e.
this is my text of this
message
becomes after set list ..eol
this is my text of this mess
age(EOL CHAR)
...
2
votes
4answers
297 views
vim: wrap question
I would like to wrap the text 5 characters before the end of window (without breaking the line).
I don't know how to do this without putting an EOL character in the text (wrapmargin/textwidth).
2
votes
10answers
5k views
Java source upgrade from 1.4.2 to 1.6.0_10 recommended ? (skipping 1.5)
Our desktop-only product at work has been using JDK 1.4.2 until now (also 1.4.2 JRE shipped with product). I am trying to convince the management to let us upgrade to a newer version in order to get ...
2
votes
4answers
2k views
SVN Line ending Style
When i try to commit the file in SVN its showing error as "Commit failed".Details follow....commit svn: Inconsistent line ending style.
2
votes
4answers
890 views
determining the line terminator in Emacs
I'm writing a config file and I need to define if the process expects a windows format file or a unix format file. I've got a copy of the expected file - is there a way I can check if it uses \n or ...
1
vote
4answers
43 views
How to change EOL coding in txt files?
I am writing in Visual Studio 2008 in C++ and I have problems with other libraries - they do not accept the line endings (EOL) I generate with my txt files.
How can I change that while writing a file ...
1
vote
1answer
43 views
Regex matching EOL character within a string
I'm trying to find LF characters that appear between double quotes. The text file I'm searching has field-value pairs in this format
msgid "text 1"
msgstr "text 2"
I'm trying to find if LF ...
1
vote
0answers
45 views
Mercurial + MQ EOL behaviour
I'm working with mercurial+mq, on Win+OSX, and the EOL issues are killing me.
I've activated EOL extension, added .hgeol as shown below:
[patterns]
**.sln = CRLF
**.vcproj = CRLF
**.vcxproj = CRLF
...
1
vote
2answers
64 views
How to control line endings output by lua DOS<==>Unix
I am using luadoc and running it on Unix and windows, unfortunately the output is different on each system because of the DOS/Unix line endings, this really confuses my source control as it thinks ...
1
vote
1answer
75 views
Overwrite unstaged commits due to gitattributes eol settings
I have a fork that has automatic eol changes on cloning due to .gitattributes. This is fixed in upstream. I would like to merge upstream into my master; however, I am unable to get rid of these ...
1
vote
1answer
169 views
EOL stops python on Calculate Field
Would anyone be able to help me modify these scripts to ignore the error and continue running ? I just need to figure out how to make the script skip over these errors and finish the rest of the ...
1
vote
1answer
73 views
^M in PHP Files
^M is the dos carriage return that's left after each line when you move a file from a Windows box to a *NIX box. I know how to remove it. I am curious to know is there any other reason besides ...
1
vote
1answer
228 views
Checking out a Linux-based subversion project into Windows and line endings
I am collaborating on a project hosted in a Subversion repository on a Linux server. My computer runs Windows XP. I am using CollabNet's Windows Subversion command-line client on my Windows XP ...
1
vote
1answer
219 views
Mercurial end of line translation
I'm using Mercurial on Windows for a cross-platform project, with the eol extension to translate line endings to Unix format, which mostly works, except .hgeol and .hgignore are not translated. My ...
1
vote
4answers
862 views
Python file.write creating extra carriage return
I'm writing a series of SQL statements to a file using python. The template string looks like:
store_insert = '\tinsert stores (storenum, ...) values (\'%s\', ...)'
I'm writing to the file like so:
...
1
vote
1answer
413 views
Problems configuring eol extension in Mercurial
I'm trying to clone a unix-hosted Mercurial repository to a Windows computer. I'm hoping to use the eol extension so that my text files with LF endings on the server have CRLF when cloned to a Windows ...
1
vote
1answer
110 views
What is the official eol value that's sent by browsers (in textarea, for example)
In PHP "\n" acts as the eol for the OS you're on so that's unreliable.
Also, I understand that PHP has constants for EOL, that's not really what I'm asking, I want to know what EOL value I can ...
1
vote
1answer
129 views
SQL Server BCP only one row inserted?
I'm using an FMT file to BCP a csv file into a an SQL Server Box - everything is fine, but only the first row of the 5 line file is getting inserted.
I think it is the line feed settings for the ...
1
vote
1answer
366 views
NSString: EOL and rangeOfString issues
Could someone please tell me if I am missing something here... I am trying to parse individual JSON objects out of a data stream. The data stream is buffered in a regular NSString, and the individual ...
1
vote
1answer
1k views
Using boost::spirit, how do I require part of a record to be on its own line?
I have a record parser that throws one of several exceptions to indicate which rule failed.
Front matter:
#include <iostream>
#include <sstream>
#include <stdexcept>
#include ...
1
vote
2answers
3k views
Setting encoding, newline, linebreaks, end-of-line (EOL) in PHP
For example, when I create a new file:
$message = "Hello!";
$fh = fopen(index.html, 'w');
fwrite($fh, $message);
fclose($fh);
How can I set it's encoding(utf-8 or shift-jis or euc-jp) and ...
1
vote
2answers
790 views
size difference between email and ftp text message - EOL characters?
I'm attempting to deliver the same message whether its over FTP or email, but the saved file keeps coming out as different sizes. The textual content of the message is the same, but the nonprintable ...
0
votes
3answers
66 views
Line endings confusion
I made a simple parser with java that reads a file one character at a time and constructs words.
I tried to run it under Linux and I noticed that looking for '\n' doesn't work. Although if I compare ...
0
votes
0answers
23 views
Change encoding and EOL of multiple files on server or locally?
I tired of having problem with encoding of the .php .html .tpl .css files on the server.
I have CentOS 5.6 and cPanel, is there some certain encoding for above files that works better for PHP ...