6
votes
15answers
678 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 …
4
votes
5answers
628 views
[vim] 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?
4
votes
5answers
688 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 …
3
votes
2answers
201 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 …
3
votes
2answers
1k 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>
…
2
votes
6answers
228 views
Difference between CR LF, LF and CR line break types?
I'd like to know the difference (with examples if possible) between CR LF (Windows), LF (Unix) and CR (Macintosh) line break types.
2
votes
1answer
113 views
Line-breaking algorithm
Where can I find an efficient algorithm for breaking lines of text for formatted display?
2
votes
3answers
175 views
Is there a string-collapse library function in python?
Is there a cross-platform library function that would collapse a multiline string into a single-line string with no repeating spaces?
I've come up with some snip below, but I wonder if there is a …
2
votes
8answers
292 views
<p> insted 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 …
2
votes
5answers
926 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 …
2
votes
4answers
1k 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 …
2
votes
5answers
876 views
Break line of code - javascript
Is there a character in JS to break up a line of code to read it as continuous despite being on a new line?
Something like....
1. alert ( "Please Select file
2. \ to delete" ); <-- ?
Thanks
1
vote
4answers
151 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 this doesn't handle …
1
vote
6answers
287 views
Replacing all <br> with <br />
I'm using this (jQuery) to replace all <br>s with <br /> to clear out validation errors:
$("<br>").replaceAll("<br />");
but it doesn't reduce any validation errors. Does …
1
vote
2answers
58 views
PHP IMAP Formatting
I have wrote a simple php script which reads an IMAP email account and displays the body of the most recent mail. There is just one problem, it won't keep the new lines properly. It just puts it all …
