Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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: ...
6
votes
11answers
8k views

How do I format a String in an email so Outlook will print the line breaks?

I'm trying to send an email in Java but when I read the body of the email in Outlook, it's gotten rid of all my linebreaks. I'm putting \n at the ends of the lines but is there something special I ...
5
votes
18answers
4k views

Non-breaking non-space in HTML

I have a bowling web application that allows pretty detailed frame-by-frame information entry. One thing it allows is tracking which pins were knocked down on each ball. To display this information, ...
5
votes
12answers
974 views

Is it “bad practice” to be sensitive to linebreaks in XML documents?

I'm generating some XML documents and when it comes to the address part I have fragments that look like this: <Address>15 Sample St Example Bay Some Country</Address> The XSLT that I ...
4
votes
2answers
7k views

Removing redundant line breaks with regular expressions

I'm developing a single serving site in PHP that simply displays messages that are posted by visitors (ideally surrounding the topic of the website). Anyone can post up to three messages an hour. ...
3
votes
2answers
2k views

Avoid line breaks when using out-file

I'm getting a little frustrated on a little PowerShell script I'm writing. Basically I loop through text files to check every line against an array of regular expression patterns. The result gets ...
3
votes
4answers
2k views

Having line breaks between <li>s

I have a horizontal menu consisting of <li> elements with display: inline. The elements are supposed to be next to each other seamlessly. In the source code, I would like to have each li on ...
3
votes
3answers
4k views

Possible to add line breaks in a textarea field while keeping it XHTML 1.0 valid?

EDIT: After re-reading my post I think I am being a little bit unclear about what the problem is. Let me try to re-phrase it: Users can leave comments on my site using a textarea field in a form. It ...
2
votes
2answers
145 views

Converting line breaks into <li> tags

I'm creating an upload form that has a text area for users to input cooking recipes with. Essentially, what I want to do is wrap each line in a <li> tag for output purposes. I've been trying to ...
2
votes
3answers
651 views

Code line wrapping - how to handle long lines

I'm facing a particular line that is 153 characters long. Now, I tend to break things after 120 characters (of course, this is heavily dependent on where I am and the local conventions.) But to be ...
1
vote
2answers
49 views

PHP - Form mail converting line breaks to spaces

I have a <textarea> in a form for user comments, and when the contents are passed to form mail, the line breaks are being converted to spaces. How can I preserve the line breaks that the form's ...
1
vote
3answers
51 views

javascript: stripping line breaks on an input string

I've seen lots of questions about preserving line breaks in textarea inputs, but I need the opposite. I suspect the answer to my question is not going to be a good one, but... I'm working with a ...
1
vote
4answers
114 views

what type of line breaks does a python script normally have?

my boss keeps getting annoyed at me for having windows line breaks in my python scripts, but i can't for the life of me work out how they are causing him a problem. is '\r\n' the normal line-break ...
1
vote
1answer
185 views

Line breaks in JSON string lost by Rails controller

Hitting a bit of a brick wall here. I'm trying to send a string containing line breaks (\n, turned to \u000a by JSON.stringify) as part of a JSON object over to a Rails app: ...
1
vote
2answers
148 views

line breaks using javascript strings

I m breaking a line in javascript using \n for example: - text = "this is a test" + "\n" + "another test"; and to show that in html i m using the code text = text.replace('\n' , '<br>'); ...
1
vote
5answers
1k views

file_put_contents, file_append and line breaks

I'm writing a PHP script that adds numbers into a text file. I want to have one number on every line, like this: 1 5 8 12 If I use file_put_contents($filename, $commentnumber, FILE_APPEND), the ...
1
vote
3answers
266 views

What does Linq replace a new line with when updating?

I have always used Replace(myString, vbCrLf, "<br/>") to show line breaks when outting something to a page from the database (retaining line breaks). I am now using a DetailsView that has a ...
1
vote
5answers
9k views

Alternatives to illegal <br> or <p> within <li> tags> on a hover?

does anyone have a suggestion for creating paragraph-type line spaces within a <li> tag that includes a hovered pop-up pseudo-class? I have a <span> that pops up on a:hover and I want the ...
0
votes
2answers
87 views

Line break in textbox

I have textbox which should be used to send formatted text to remote application, and I should format it so it breaks on closest space to 30th character (spaces included) and that space on which line ...
0
votes
0answers
38 views

how can I detect an incoming line break in UITextView?

While I'm typing, I want to detect the incoming new line, to make my image grow up according to content inset of my UITextView frame
0
votes
0answers
27 views

Comments and text display sinitization

Im reading a lot of answers on google and hewre regarding sanitizing text for disply on a website and to use htmlentities(). The only problem is that I want users to be able to keep their punctuation ...
0
votes
1answer
108 views

Line breaks from imported XML

I would like to know how to maintain line breaks in my imported XML document. All loads well but I loose the breaks in each paragraph from the node name "newsstory". I originally separated each ...
-3
votes
4answers
66 views

Replace newline characters with actual newlines?

Before $string = "this is \n a line \n break"; After $string = "this is a line break"; I want there to be an actual line break (not \n) on the string. Any ideas? To clarify I know I can ...