2
votes
3answers
81 views
Python 3: Write newlines to HTML
I have upgraded to Python 3 and can't figure out how to convert backslash escaped newlines to HTML. The browser renders the backslashes literally, so "\n" has no effect on the HTML …
1
vote
4answers
47 views
Diff Tool That Ignores Newlines
I frequently need to compare SQL procedures to determine what has changed in the newest version. The problem is, everyone has their own style of formatting, and SQL doesn't (usual …
1
vote
6answers
68 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 …
1
vote
4answers
145 views
What’s the most pythonic way of normalizing lineends in a string?
Given a text-string of unknown source, how does one best rewrite it to have a known lineend-convention?
I usually do:
lines = text.splitlines()
text = '\n'.join(lines)
... but …
1
vote
5answers
515 views
Match any character (including newlines) in sed
I have a sed command that I want to run on a huge, terrible, ugly html file that was created from a microsoft word document. All it should do is remove any instance of the string
…
2
votes
3answers
103 views
How To Use \n In a TextBox
I'm developing a program that I'm using a string(generatedCode) that contains some \n to enter a new-line at the textBox that I'm using it(textBox1.Text = generatedCode), but when …
0
votes
6answers
59 views
PHP regex not new line
How do I have a regex statement that accepts any character except new lines. This includes anything but also includes new lines which is not what i want:
"/(.*)/"
0
votes
2answers
43 views
Why does this regular expression not match adjacent occurences of newline?
I was trying to write a regexp to replace all occurrences of \n with \r\n unless the \n is already proceeded imediately by a \r. I'm doing this in Ruby 1.8.6 which doesn't support …
0
votes
3answers
40 views
Apache HSSF POI excel doc to tab delimted file
went and got a file that already "works" from here: xls to csv
Note, I wanted a tab delimited format, so I just went in and changed "," to "\t" and then removed a bunch of the ext …
0
votes
3answers
42 views
Regex starting with a zero length line and continuing across lines in Java
Hi,
I want to match the following: a zero length line, with the match continuing across lines of non-zero length until a particular string is matched in a line. E.g: the match sta …
1
vote
3answers
47 views
How to read lines from a text file one by one with Power Point VBA code?
This code will read a line from a text file:
set file = CreateObject("Scripting.FileSystemObject").OpenTextFile("c:\number.txt", 1)
text = file.ReadLine
MsgBox text
How can I ma …
0
votes
1answer
88 views
Zend Framework: File Getter Action returns a spurious newline
I'm trying to make an action that returns a file from disk to the user (via little download dialog popup box.) I've got it working great, except somehow a newline is being inserted …
0
votes
1answer
245 views
New lines in Jasper Reports?
I've just started using Jasper Reports to generate reports from data retrieved using Hibernate. Everything is working, except JR doesn't seem to respect newline characters (\n) in …
0
votes
2answers
106 views
Print CLOB content out as is in Oracle SQL script
Hi,
To start with here is the bigger picture of the task I'm trying to do. I need to create a xml file from the results of the particular SQL request and store it in a file on th …
3
votes
3answers
140 views
.NET “default line terminator”?
Is there any way to figure out what .NET is using as it's "default line terminator"? For example, documentation for StringBuilder.AppendLine(String) says it "Appends a copy of the …
