Tagged Questions
The linebreaks tag has no wiki summary.
62
votes
2answers
1k views
Do browsers send “\r\n” or “\n” or does it depend on the browser?
This question has bothered me for a million years... whenever I create a website with a textarea that allows multi-line (such as a "Bio" for a user's profile) I always end up writing the following ...
59
votes
6answers
1k views
What's the opposite of a nbsp?
A character is a space which doesn't allow for line breaking.
<p>lorem ipsum here are some words and so on</p>
| lorem ipsum |
| here ...
16
votes
6answers
15k views
textarea line breaks javascript
I got a textarea in javascript but the problem is that when i make line breaks in it they won't display how can i do this ?
i'm getting the value and use a write function but it won't give line ...
15
votes
5answers
10k views
How to add line break for UILabel?
Let see that I have a string look like this:
NSString *longStr = @"AAAAA\nBBBBB\nCCCCC";
How do I make it so that the UILabel display the message like this
AAAAA
BBBBB
CCCCC
I ...
14
votes
1answer
106 views
Why doesn't $ in .NET multiline regular expressions match CRLF?
I have noticed the following:
var b1 = Regex.IsMatch("Line1\nLine2", "Line1$", RegexOptions.Multiline); // true
var b2 = Regex.IsMatch("Line1\r\nLine2", "Line1$", RegexOptions.Multiline); // false
...
12
votes
2answers
9k views
jQuery convert line breaks to br (nl2br equivalent)
I'm having jQuery take some textarea content and insert it into an li.
I want it to visually retain the line breaks.
There must be a really simple way to do this...
11
votes
4answers
12k views
How do I break a string across more than one line of code in JavaScript?
Is there a character in JavaScript to break up a line of code so that it is read as continuous despite being on a new line?
Something like....
1. alert ( "Please Select file
2. \ to delete" );
9
votes
7answers
5k views
How to convert the ^M linebreak to 'normal' linebreak in a file?
vim shows on every line ending ^M
How I do to replace this with a 'normal' linebreak?
9
votes
5answers
16k views
Problem when retrieving text in JSON format containing line breaks with jQuery
I'm having a strange problem when retrieving JSON formatted text. I use jQuery post to send some data (also JSON formatted) to the server (running PHP) which works fine. Then, when I request the same ...
9
votes
2answers
7k views
How do i remove all linebreaks using XSLT?
I have something like this:
<node TEXT=" txt A "/>
<node TEXT="
txt X
"/>
<node>
<html>
<p>
txt Y
</p>
</html>
...
8
votes
5answers
1k views
detecting line-breaks with jQuery?
is it possible to have jQuery/javascript detect where a string is broken (in order to fit into CSS width constraints) so as to insert DOM elements before the beginning of a new line?
8
votes
7answers
27k views
How to remove line breaks from a file in Java?
How can I replace all line breaks from a string in Java in such a way that will work on Windows and Linux (ie no OS specific problems of carriage return/line feed/new line etc.)?
I've tried (note ...
8
votes
8answers
669 views
<p> instead of <br />
I've been wondering if I can use <p> </p> (just space in paragraph) instead of <br /> ...
Because I love to keep my code semantic and thought if this is right has been ...
8
votes
5answers
12k views
Neatest way to remove linebreaks in Perl
I'm maintaining a script that can get its input from various sources, and works on it per line. Depending on the actual source used, linebreaks might be Unix-style, Windows-style or even, for some ...
8
votes
5answers
3k views
Unix newlines to windows newlines (on Windows)
Does anyone know of a way (say Powershell, or a tool) in Windows that can recurse over a directory and convert any unix files to windows files.
I'd be perfectly happy with a way in Powershell to at ...
8
votes
15answers
2k views
If you break long code lines, how do you indent the stuff on the next line?
Sometimes you have to write in your source long lines, that are better to break. How do you indent the stuff ceated by this.
You can indent it the same:
very long
statement;
other statement;
That ...
6
votes
1answer
81 views
How to influence linebreak in Android Textview
I have an Appwidget displaying days until an event like:
eventname (-231 days)
If possible I want to display this String in one line.
If the eventname is too long I want to display the full term ...
6
votes
3answers
262 views
HTTP header line break style
Which line break style is more preferable for use in HTTP headers: '\r\n' or '\n', and why?
6
votes
4answers
1k views
Line break issue from CSV to MySQL
I am importing a .csv file into MySQL and everything works fine, except the line breaks that are in the file.
One of my .csv rows looks like this:
42,E-A-Râ„¢ Classicâ„¢ ...
6
votes
1answer
1k views
jQuery text() function loses line breaks in IE
This is quite a talked about problem on the jQuery forums but I can't figure out a solution for my situation.
I have an unordered list with some text elements in them... the user can create new list ...
5
votes
2answers
593 views
How to use Emacs to write comments with proper indentation, line-length, and wrapping?
I'm tired of writing comments that look like this
{
# bla bla blabla bla blabla bla blabla
# bla bla blabla bla blabla bla blabla bla blabla bla blabla bla bla
# blaaa bla
}
I have to ...
5
votes
3answers
9k views
Capturing linebreaks (newline,linefeed) characters in a textarea
I have a form with a <textarea> and I want to capture any line breaks in that textarea on the server-side, and replace them with a <br/>.
Is that possible?
I tried setting ...
4
votes
7answers
111 views
How to deal with long lines of code and commands in Python [closed]
I've tried searching, but I couldn't find any situations similar to mine. I am writing a program and so far I've stuck to the no more than 79 characters in a line rule. However I'm not sure where to ...
4
votes
4answers
342 views
Suppress line break in a RichTextBox at certain positions
I need to suppress some linebreaks in a RichTextBox.
For example, consider d6+. There must not be a line break between 6 and +. Basically I'm looking for something like <nobr> in HTML.
So ...
4
votes
5answers
1k views
Remove all the line breaks from the html source
Well I know obfuscation is a bad idea. But I want all of my html code to come in one long single line. All the html tags are generated through PHP, so I think its possible. I knew replacing \n\r from ...
4
votes
3answers
401 views
HTML - Break line in a pre tag
I am trying to copy (with jQuery and JS) text written in a textarea to a pre tag.
However, I cannot introduce as many line breaks as I want. For instance, if I press Enter once, it works and I create ...
4
votes
5answers
312 views
Where do you like to split long lines? [closed]
For manually wrapping long lines, what is your personal heuristic for choosing places to break a line?
Assuming this line is too long, where might you break it and it what order of precedence?
...
4
votes
4answers
246 views
When is it dangerous to line break after a close parenthesis in Javascript?
What are the dangers of breaking a line of long code up at a close parenthesis?
When could a semicolon be automatically inserted by Javascript (presumably that is the danger, right?).
Why is using a ...
4
votes
3answers
585 views
JSP Document/JSPX: what determines how tabs/space/linebreaks are removed in the output?
I've got a "JSP Document" ("JSP in XML") nicely formatted and when the webpage is generated and sent to the user, some linebreaks are removed.
Now the really weird part: apparently the "main" .jsp ...
3
votes
1answer
45 views
What is the best way to break HTML text on slashes (/)?
I have an HTML table 360px wide, which works great. The challenge is that sometimes a url appears http://this/is/a/really-really-really-really-really/long/url in the text. This causes the table to ...
3
votes
2answers
120 views
javascript trim line breaks with regex
I am using Google Translate to translate the contents of a textarea and fill another textarea with the API response.
In my source textarea I am replacing the /n newlines with <br /> line breaks ...
3
votes
2answers
97 views
does Python for windows ever insert '\r\n' when told to insert '\n'?
I use a PC at home and a Mac at work. I've never had any problems with line breaks in python script or their outputs, but whenever i send something to my boss i get an angry e-mail back about windows ...
3
votes
2answers
131 views
how to make a long url spread into two lines
I have a very narrow column and a three-word URL that is pushing wider that the column's original width.
can i force the three words to spread over two or three lines and keep the URL link intact?
I ...
3
votes
2answers
185 views
How do I read in lines of a text file when the line breaks are “/r” instead of “/n”?
I have a massive .txt file with a list of tens of thousands of adjectives. In the text files, each word is on its own line. I read it into a list (that I then put into an array using Array.of_list) ...
3
votes
2answers
1k views
Powershell add-content line breaks
I am trying to figure out how to eliminate line breaks when using add-content
echo $server "Uptime: " $uptime.days ", Days" $uptime.hours ", Hours" $uptime.minutes ", Minutes" | add-content ...
3
votes
4answers
5k views
How to add a line break in an Android TextView?
I am trying to add a line break in the TextView.
I tried suggested \n but that does nothing. Here is how I set my texts.
TextView txtSubTitle = (TextView)findViewById(r.id.txtSubTitle);
...
3
votes
3answers
240 views
How can I use ajax to post message through a url and still keep line breaks?
Here is a sample of the javascript/ajax on PAGE A:
var commReq = getXmlHttpRequestObject();
function AddComment(Comment){
if (commReq.readyState == 4 || commReq.readyState == 0){
...
3
votes
3answers
102 views
In javascript, what is the difference between '\' and '\n'?
I figure that both \ and \n can be used as a line break. What is the difference?
EDIT: Sorry I realized that I was wrong. The tutorial was talking about / as a line break for the programmer, which ...
3
votes
1answer
2k views
Can CSS force a line break after each word in an element?
I'm building a multilingual site, with the owner helping me with some translations. Some of the displayed phrases need line breaks to maintain the style of the site.
Unfortunately, the owner isn't ...
3
votes
3answers
481 views
webkit display:inline-block behaving inconsistently
I have a span with several other spans inside it, and I want to toggle the sub-spans between display:block and display:inline. The spans start off with display:inline-block, then are switched to ...
3
votes
6answers
2k views
How can I detect DOS line breaks in a file?
I have a bunch of files. Some are Unix line endings, many are DOS. I'd like to test each file to see if if is dos formatted, before I switch the line endings.
How would I do this? Is there a flag ...
3
votes
2answers
586 views
Python line file iteration and strange characters
I have a huge gzipped text file which I need to read, line by line. I go with the following:
for i, line in enumerate(codecs.getreader('utf-8')(gzip.open('file.gz'))):
print i, line
At some ...
3
votes
2answers
4k views
javascript: replace linebreak
I'm having a string which contains a chr(13) as linebreak. How can i replace it with eg. <br>? I tried mystring.replace("\n","<br>"); but it didn't work
Thanks in advance.
3
votes
6answers
3k views
Latex Multiple Linebreaks
I use LaTeX to type up programming homeworks for classes. I need to do this:
my line of text blah blah blah
new line of text with blank line between
I know I can use double slash to break lines ...
3
votes
2answers
592 views
Change line break characters in HTML
In Firefox a '/' breaks a line, but in chrome the line continues. How can I tell chrome to allow a line break on '/'?
This is a problem for the middle table on
http://webnumbr.com/api
3
votes
7answers
11k views
Difference between CR LF, LF and CR line break types? [closed]
Possible Duplicate:
What is the difference between \r and \n?
I'd like to know the difference (with examples if possible) between CR LF (Windows), LF (Unix) and CR (Macintosh) line break ...
3
votes
5answers
12k views
How to put string in array, split by new line?
I have a string, with line breaks in my database.
I want to put that string in an array, and for every new line, jump one index place in the array.
If the string is:
"My text1(here is a line ...
3
votes
2answers
6k views
hw to create line breaks between dynamically generated labels in a placeholder?
This is the code below in code behind file's Page_Load event:
LinkButton linkButton = new LinkButton();
linkButton.ID = "LinkButtonDynamicInPlaceHolder1Id" + i;
...
3
votes
2answers
796 views
How can I stop Chrome from adding extra line breaks in my textarea?
I have a form in asp that does some javascript error checking them shows a preview of the form information before the user submits it to our database. To enable light formatting before submission we ...
2
votes
3answers
54 views
php regex, making sure user doesnt add too many new line breaks
Input form on my website for comments. I have some silly users creating a whole lot of blank whitespace by pressing enter [space] enter [space] or lots of enters etc
In PHP, how do I preserve legit ...