Tagged Questions
The end-of-line tag has no wiki summary.
8
votes
6answers
20k views
Remove end of line characters from Java string
I have string like this
"hello
java
book"
I want remove \r and \n from string(hello\r\njava\r\nbook). I want a string as "hellojavabook". How can I do this?
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 ...
3
votes
4answers
1k views
Vim no end of line on last line or eof
I am trying to setup vim to skip adding eol on last line or eof, i have tried this
:set binary
:set noeol
:w
which is not perfect cause binary override filetype for later use.
Any other option to ...
2
votes
1answer
48 views
SQL Server - Bulk insert without losing CR or LF characters
I am trying to import email communication into a database table using Bulk Insert but I can't seem to be able to preserve the CR and LF characters. Let's consider the following:
CREATE TABLE myTable ...
2
votes
4answers
2k views
How to convert Windows end of line in Unix end of line (CR/LF to LF)
I'm a Java developer and I'm using Ubuntu to develop. The project was created in Windows with Eclipse and it's using the CP1252 encoding.
To convert to UTF-8 I've used the recode program:
find Web ...
2
votes
2answers
1k views
Javascript: Convert textarea into an array
How would you go about breaking up a textarea value into an array, based on the end of line separation? Use of jQuery is cool by me...
2
votes
1answer
665 views
How to configure GNU Emacs to write UNIX or DOS formatted files by default?
I've had these functions in my .emacs.el file for years:
(defun dos2unix ()
"Convert a DOS formatted text buffer to UNIX format"
(interactive)
(set-buffer-file-coding-system 'undecided-unix ...
1
vote
2answers
60 views
How to append a UILabel to the end of text in another UILabel?
In my project, there's a UILabel in each UITableViewCell.
Text in each label varies from 1 line to 2 or 3 lines. (I get each text dynamically.)
I wonder how I can append another UILabel to the end of ...
1
vote
1answer
72 views
How do I stop VB6 Winsock from sending an end of stream byte?
How do I stop VB6 Winsock from sending an end of stream byte? It sends a 0 after each message, and it is messing with my code.
1
vote
3answers
93 views
Regex: Match the text before the end of line
I have a file that looks like this:
J6 INT-00113G 227.905 5.994 180 ~!@#$%&^)
J3 INT-00113G 227.905 -203.244 180 12341341312315
U13 EXCLUDES -42.210 181.294 180 ...
1
vote
1answer
106 views
Trailing end-of-lines in C++ with Tortoise SVN
I'm new to a team that uses SVN for source control. I'm used to Git myself, so I'm really at a loss with all of SVN's pre-commit/post-checkout filters for tracked files.
I've commited some C++ ...
1
vote
2answers
197 views
sed filter to substitute '!' for periods and '!!' for periods at the end of lines
I want to write a sed filter that changes all periods in its input to exclamation marks, unless the period is at the end of a line, in which case the period is replaced with 2 exclamation marks (ie. ...
1
vote
1answer
106 views
How can I print “Done” or “Fail” at the end of line to stdout in Perl?
I just have begun with Perl and I want to write my own script to scan a document and convert the resulting TIFF file to a PDF file. If the conversion succeeds (using tiff2pdf), I want to print "Done" ...
1
vote
1answer
456 views
Configure Visual Studio with UNIX end of lines?
We would want to have Visual Studio 2005 working on a local copy of a SVN repository; this local copy has been checked out by Mac OS X (and updates and commits will only be made under Mac OS X, so no ...
0
votes
0answers
26 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 ...
0
votes
2answers
61 views
Regex: selecting end of line character of lines NOT containing 3 semicolons
I'm using the Regex enabled Search&Replace function in EditpadLite. My document looks like this
20-10-2011;foo1;foo2;foo3;foo4;foo5
19-10-2011;foo1;foo2;foo3;foo4;
18-10-2011;foo1;foo2;foo3;foo4
...
0
votes
0answers
30 views
SVN create patch shows additional lines being modified (with spaces at the end of the line)
I have files saved in the ANSI code set with UNIX newlines on my Windows machine, but when creating a patch, I see diffs which look like the following (but I havent made any changes to these lines):
...
0
votes
2answers
153 views
Inserting endline into a stringstream
We know that when inserting \n in a file stream, the appropriate end-of-line sequence for the system will be written to the file (e.g. \r\n for Windows). Does inserting an endline in a ...
0
votes
1answer
178 views
How do I create SAS fixed-format output containing end-of-line control characters?
I am using SAS's FILE statement to output a text file having fixed format (RECFM=F).
I would like each row to end in a end-of-line control character(s) such as linefeed/carriage return. I tried the ...
0
votes
1answer
114 views
Dealing with end-of-line characters cross-platform in C++
I'm busy writing a generic textfile reader class and I'm struggling to write the code to deal correctly with end-of-line (EOL) characters for Mac, Linux and Windows.
I've done a some reading on the ...
0
votes
4answers
200 views
Python: Specify end-of-line format for reading files
I'm writing a Python script which processes a text file. I expect to process files generated from different people, working under different operating systems. Is there a nice way to figure out which ...
0
votes
2answers
247 views
JEditorPane Is Last Line
Using a JEditorPane, is there any way to tell if the caret is currently on the last line? I cannot find anything in the API or more importantly JTextComponent of which JEditorPane is derived. I need ...
0
votes
1answer
359 views
check if std::cin operator>> has read the whole line
I'm implementing a little command line parser. Let's say I have a command that requires 2 parameters. I want to let the user type all 3 strings (the command and 2 parameters) on one line, as well as ...
0
votes
3answers
64 views
PHP Inserting newlines automatically
I have a php data migration script that serializes an array of text. Somehow, and this is not in my codebase, but the script is inserting \\\\\\\r\\\\\\\n into the string. Here is an example of what ...