The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
3answers
46 views

Java: How read a File line by line by ignoring “\n”

I'm trying to read a tab separated text file line per line. The lines are separated by using carriage return ("\r\n") and LineFeed (\"n") is allowed within in tab separated text fields. Since I want ...
0
votes
1answer
32 views

SQL Plus/Shell Script: Extra newline printed

Below is my variable and the value is being fetched from the query. subsno=`sqlplus -s user/pass@DB << EOL set heading off; SET FEEDBACK OFF; select CFR_SUBSCRIBER_NO from csm_future_request ...
1
vote
1answer
37 views

How do I properly store encoded characters in strings.xml?

I am trying to store two carriage returns in in strings.xml but can't figure out why they are ignored. However, if I put them directly into the layout, the carriage returns work fine. Outputs ...
3
votes
3answers
72 views

Realtime removal of carriage return in shell

For context, I'm attempting to create a shell script that simplifies the realtime console output of ffmpeg, only displaying the current frame being encoded. My end goal is to use this information in ...
0
votes
3answers
25 views

PHP include a text file whilst keeping carriage returns?

I have a text file that I'm including on my page, however the carriage returns aren't there as they are in the text document. How can I keep them as they are in the text document?
2
votes
4answers
47 views

Detect \n character saved in SQLite table?

I designed a table with a column whose data contains \n character (as the separator, I used this instead of comma or anything else). It must save the \n characters OK because after loading the table ...
0
votes
1answer
24 views

How to Strip Carriage returns from a String

I'm trying to process a string so that it contains no carriage returns however I'm having some trouble. I am currently using: Visual Studio 2010: strText = strText.Replace(vbCr, "") The carriage ...
0
votes
1answer
74 views

How to control newline processing in the lxml xpath text() function?

Having switched from Fedora 17 to 18, I get different parsing behaviour for the same lxml code, apparently due to different versions of the underlying libraries (libxml2 and libxslt versions changed). ...
0
votes
2answers
84 views

php regex - remove \r\n\r\n at the very beginning AND at the very end in a string

If exists, I need to remove \r\n\r\n at the very beginning and/or at the very end of string. My issue is I couldn't achieve my aim with codes below. //if exists, remove \r\n\r\n at the very ...
0
votes
1answer
531 views

Extract text by line from PDF using iTextSharp c#

I need to run some analysis my extracting data from a PDF document. Using iTextSharp, I used the PdfTextExtractor.GetTextFromPage method to extract contents from a PDF document and it returned me in ...
-3
votes
1answer
57 views

Ruby return without pressing enter [closed]

Ok so this is a simple question but I don't exactly know the terminology to use to search for a solution so I am going to explain it here. I have 2 classes with several methods in each. Method 1 in ...
0
votes
3answers
94 views

C#: Double Carriage Return Outputting when String only has one

I have an odd issue that one would think is easy to solve. Basically I am creating a string like this: string temp = "SET pagesize 50000;" + Environment.NewLine + "SET linesize 120;" + ...
0
votes
1answer
79 views

Sending a mail from WinJS

I have the following code in a standard Windows 8 Javascript Store App: var test = document.getElementById("testButton"); test.addEventListener("click", function () { var mailto = new ...
1
vote
1answer
105 views

Regex to replace carriage returns

I'm looking to improve a regex in JavaScript which looks for new lines or line breaks and replace them with carriage returns. - Yeah, Photoshop's text is old skool. "hello\nworld" "helloworld" ...
1
vote
1answer
87 views

BufferedReader: How to know whether to add a return character when using readLine()?

The following code uses BufferedReader to read from an HTTP response stream: final StringBuilder responseBuilder = new StringBuilder(); String line = bufferedReader.readLine(); while (line != null) { ...
1
vote
1answer
83 views

Inserting new lines to be read in a .txt file

I have the following code for creating a .txt file in javascript: var text_block = ''; text_block += "Variable 1:"+var1+"\r\n"; text_block += "Variable 2:"+var2+"\r\n"; text_block += "Variable ...
1
vote
2answers
92 views

JavaScript Regexp - allowing carriage return lets other unwanted characters validate

I have a textarea in which i want to allow only a-z 0-9 \s .,- and \r \n I'm using a JQuery 3rd party plugin. This is what i have for validation rules: jQuery("#description").validate({ ...
0
votes
2answers
334 views

Create Carriage Return in PHP String?

We have written a small PHP Hook for our billing system that opens a new support ticket with us when an order is placed. It works except that for the "Open Ticket" API function, it takes a string for ...
0
votes
4answers
100 views

Python:New line at the same postion

In python 2.7 how can you achieve the following feature: print "some text here"+?+"and then it starts there" the output on terminal should look like: some text here and then it ...
-1
votes
1answer
87 views

Oracle10g- Replace multiple carriage return

a query returns string like AAA[][]AAA[][][][]BBB[][]BBB . I need to replace the four consecutive carriage returns with a semicolon but not the consecutive two carriage returns. I have tried ...
1
vote
1answer
180 views

Serial connection carriage return

I'm creating a Hyperterminal type app in VB.NET and have a problem with the serial connection. When I send data to the device, I get the response I'm expecting but with an extra CR in the response. Ie ...
0
votes
1answer
222 views

create basic line breaks with an Xpath Expresion from Java to XML file

Throghout learning how to program Stack Overflow has provided a wealth of information, and a staple of learning how to figure out different things. However for this problem, after searching for a few ...
8
votes
1answer
487 views

How to get carriage return without line feed effect in Eclipse console?

If I System.out.print("something\r"); at console, I have cursor back at the beginning of line, and finally after System.out.print("something\r"); System.out.print(" any\r"); I have anything ...
0
votes
1answer
82 views

Checking for <cr> in if statement in Windows Command Prompt

As per my corrected answer to another question it seems that Windows XP doesn't strip <cr>'s from for /f output. How can I test for the existance of <cr>'s in the output? What I ...
2
votes
4answers
484 views

Find and replace over multiple lines using sed in Xcode Run Script bin/sh

I have a Cocos2D tmx file which is very much like an xml and includes carriage returns and spaces. My requirements are: In every tmx file in Resources/maps_sideScrolling/ find and everything ...
0
votes
1answer
72 views

getting back carriage returns after using mysql_real_escape_string()

I'm finishing up on my website and want to make it very sql injection safe. A major part of that is going through and using mysql_real_escape_string() on any potential user input. This is fine for ...
2
votes
2answers
324 views

jQuery textarea character count (including carriage return)

I have a jQuery function wherein I count the characters left on keyup. function charactersLeft(e) { var textArea = e.data.textArea, charLeft = e.data.maxLength - ...
4
votes
1answer
96 views

Testing for unseen characters in java

I'm writing a program in Java that tests the validity of several FTP commands. These commands must in a a carriage return and new line feed (the sequence "\r\n"). I'm using a BufferedReader to read in ...
1
vote
3answers
114 views

Display columns that contain a carriage return

I have a Students table, which contains 7 address fields. I need to display 1 row each for student where the address fields have carriage return, if any. It's confused after this. The 9th ...
1
vote
1answer
1k views

Formatting carriage return, line feed in Oracle PL/SQL

I have problems regarding a mail body formatting I'm sending: Here is the KO version (no new lines): declare crlf VARCHAR2(2) := chr(13)||chr(10); msg_body ...
2
votes
0answers
151 views

Form textarea behavior for carriage return / new line

I'm working on a project with symfony2, doctrine2 and sonata admin bundle. When i edit field of an entity in a textarea, it saves it in a postgres database with \r carriage return. This is a problem ...
0
votes
1answer
117 views

Show carriage return from rails to javascript

I have a .js.erb which is triggered by a js function. In this js.erb I have the following code: event = <%=raw @event.to_json %> $('#preview-event-body').html(event.body); event.body is a ...
0
votes
2answers
116 views

Carriage return in C doesn't work properly if the line contains spaces

I have a really weird problem with carriage return. I try to rewrite a line multiple times, it works fine if the line has no spaces and doesn't work if it has spaces. For instance this code printf(" ...
1
vote
2answers
118 views

How to remove whitespace and carriage return symbols in Emacs?

Whenever I edit a Python or ELisp script, Emacs will display a '$' for every carriage return and a centered dot for every whitespace. I have no idea how to disable or get rid off this setting. After ...
0
votes
1answer
79 views

Extra line returns in text boxes clipboard

I have created a "Word Merge" routine that i use personally. When I add items into my 3 text boxes, and then merge, everything looks fine. but when i copy to a clipboard, there are extra carriage ...
2
votes
1answer
134 views

Why is ^M being added to a script.r after modifying with Meld?

Esteemed Meld and Emacs/ESS users, What I did: Create a script.r using Emacs/ESS. Make some modifications to script.r by pulling some lines of code from another_script.r Reopen another_script.r (or ...
0
votes
5answers
160 views

How do I echo in PHP without carriage returns?

Whenever I do an echo in PHP, I get two extra carriage returns. For example: <?php echo 'abc'; ?> yields abc[cr][cr]. If I copy my script to a different server, I even get [cr]abc[cr][cr]. ...
0
votes
0answers
108 views

Appending a carriage return to the end of a detail line

I am trying to append a carriage return value (\n) to the end of a Detail line and am having problems getting it to work correctly. I placed a value of \n in the textField Expression for the text ...
1
vote
2answers
217 views

Dealing with \r \n ^M ^@ in text files using vim

When I save lines of data in excel files as tab delimited .txt files, and then open those files in VIM, I see that what was once a multi-line file in excel is now a single line file in VIM. The ...
1
vote
2answers
88 views

What does a forward slash before a pipe in cmd do to remove the line ending of an echo?

This code: @echo off echo/|set /p ="Executing backup...." echo/|set /p =" backup procedure" ... came from Echoing in the same line and produces the below output in a cmd window: ...
0
votes
1answer
84 views

Adding carriage returns and line feeds into the CommandText of a TableAdapter for use in an ASP.Net GridView

Is it possible to add carriage returns and line feeds into the CommandText of a TableAdapter so the results of the query displays them in an ASP.Net GridView? Here is part of a query in the ...
1
vote
3answers
756 views

How to read a file into a string with CR/LF preserved?

If I asked the question "how to read a file into a string" the answer would be obvious. However -- here is the catch with CR/LF preserved. The problem is, File.ReadAllText strips those characters. ...
0
votes
0answers
108 views

PHP: How to read a text from a file and preserve CR and LF characters?

I have a simple text in a .txt file, just three strings of text with each string on a new line. Typing that text I pressed the Enter key after the dot of every line. I use Windows so there must be ...
0
votes
2answers
336 views

Extra characters added to multiline textbox

The issue I am having is that when I create a multiline textbox, it prepends (carriage return line feed) characters. I am using .NET 4.5. I created an empty project with just a multiline ...
4
votes
2answers
264 views

Alternative or fix for “\n” in google script

First time I put up a question here (been searching before posting) so please bear with possible mistakes done on my end. To the problem: I am currently working on a website with google sites. Made ...
1
vote
1answer
513 views

carriage return by fgets

I am running the following code: #include<stdio.h> #include<string.h> #include<io.h> int main(){ FILE *fp; if((fp=fopen("test.txt","r"))==NULL){ printf("File can't ...
0
votes
3answers
443 views

What are the difference between a “line feed” and a “carriage return”?

If there are these two keywords then they must have their own meaning. So I want to know what makes them different and what is their code?
3
votes
5answers
2k views

How to remove extra empty lines from XML file?

In short; i have many empty lines generated in an XML file, and i am looking for a way to remove them as a way of leaning the file. How can i do that ? For detailed explanation; I currently have this ...
1
vote
1answer
869 views

Add-Content or substring is adding carriage return to variable

I'm outputting some lines of text that I'm pulling from a file and carriage returns are being added when I output this section after $strAcct: Add-Content "C:\TestFile-Output.txt" ...
0
votes
2answers
64 views

Parsing text from a linux log on windows (Adding spaces that are removed)

So I do a little work from time to time on Linux and today I needed to document some text files copied from the terminal window. The only problem was that I brought a linux text file over to notepad ...

1 2 3 4 5