Whitespace that forces text layout to continue at the start of the next line.
0
votes
0answers
4 views
Iframe design/content mode BR instead of P UEditor
I'm trying to implement UEditor as a text and code editor.
I've managed to get CSS applied to <code> and use a button to wrap (Surround) selected text with a <code> block.
This is good ...
1
vote
1answer
52 views
C# Line break a string on x number of characters but not through a word
I'll try to explain what I am looking for as best as I can. Currently, I am using this code to line break every x number of characters.
public static string SpliceText(string text, int lineLength)
...
0
votes
1answer
23 views
VB.net Single row list view across multiple lines
Is it possible to line break a listview control set to single row in visual studio similar to a wordwrap? So the line break occurs when a certain width is exceeded by the text, not where a certain ...
1
vote
2answers
28 views
Prevent Line Break on contentEditable DIV
I have a contentEditable DIV, and i need to prevent the insertion of Line Break on Enter keypress, and allow it only by pressing Shift + Enter
I've tried:
$(".element").on('keydown', function(e) {
...
0
votes
3answers
36 views
How to linebreak an svg text within javascript?
So here is what I have:
<path class="..." onmousemove="show_tooltip(event,'very long text
\\\n I would like to linebreak')" onmouseout="hide_tooltip()" d="..."/>
<rect ...
-1
votes
1answer
54 views
Can I set word-wrap:break-word to input of type submit?
Can the CSS word-wrap: break-word be applied to an <input/> of type submit?
Ive applied that css but its not doing anything which isnt what i expected. Im trying to make my submit input wrap ...
0
votes
1answer
14 views
preg_replace whitespace also breaks my special characters
I have a string that contains a lot of whitespaces and line breaks that I would like to clean up, so I use:
$str = trim(preg_replace('/\s+/', ' ', $str));
However, when I echo out $str I notice ...
0
votes
1answer
37 views
Adding a line break to a string from plist in iOS
I need to add a line break to a string, which I obtain from the plist. The string is passed to the UILabel to presented on screen. For example, my text is like "Adding a line break to a string from ...
-3
votes
0answers
25 views
There are line breaks in my wordpress source code everywhere but NOT in the .php files [closed]
I am doing some minor changes for a web site and there are line breaks in the middle off every tag when I view source but there are none in the header.php etc. Any ideas why?
www.midwestsalt.net
0
votes
3answers
50 views
\n Not Working For Linebreak — Java
I am using the following code:
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.event.ActionEvent;
import ...
1
vote
4answers
45 views
How can i break a line text using PHP for an email
Using a AS3 aplication, i'm sending the body variable via GET.
$body = $_GET['body'];
Here i'm trying to replace the word 'JUMP' with '\n' to break a line
$body = preg_replace('/JUMP/', '\n', ...
0
votes
0answers
6 views
How do I make PhpED preserve line endings/breaks?
Professionally I work with NuSphere PhpED on a Windows computer. Whenever I open a file from an existing project and save it the IDE automatically converts all the line endings/breaks to UNIX.
This ...
-5
votes
2answers
48 views
How to replace all tags “<br>” (and its variants) by System.getProperty (“line.separator”)? [closed]
How to replace all tags <br> <br /> </br> <BR> </BR> by System.getProperty ("line.separator") in Java ?
Unfortunately this question can not help me
1
vote
2answers
39 views
Add a line break after group of CSS pseudoclasses
How can I get a line break to be inserted after each group of two list elements? It doesn't necessarily need to be a HTML <br />, but just something to move the next two elements to the next ...
0
votes
0answers
24 views
Pasteboard - copying (image + text) creates mystery \n line break
When I add an image and a string to the pasteboard I get a mysterious line break at the start of my text?
NSMutableDictionary *photo = [NSMutableDictionary dictionary];
NSMutableDictionary *text = ...
0
votes
1answer
55 views
How do I format HTML, removing unwanted line breaks?
I would like to do something like this:
<div class="show_details_block">
<% if @model.details.length > 0 then %>
<%= h(@model.details) %>
<% else %>
"No details ...
0
votes
1answer
34 views
Make a line break when requesting user input (/P) in batch?
Is it possible to create a line break after a set /P command? I would like the user to be able to type on a new (blank) line instead of next to the existing prompt. For example:
set /P test=type now
...
-1
votes
1answer
54 views
Excel vba macro for that copy from 1 word-wraped cell to multiple multiple cells
At work I often have to copy large amounts information from one sheet to another (Excel 2007).
The problem is that I want to copy a row on sheet1 that contains word wrapped text with line-breaks to ...
1
vote
1answer
33 views
Read a file with line continuation characters in Python
I'm looking for a nice pythonic way of reading a file, and joining any lines which are logical continuations of the ones above, as indicated by a line continuation character. E.g.
Here is a normal ...
0
votes
4answers
50 views
UILabel lineBreakMode, break at specific character
Is there a way to break the text in a UILabel at a specific character say ";" ??
I don't want it to be broken with Word Wrap or character Wrap.
0
votes
2answers
37 views
No consistent word-breaking in Firefox
Please take a look in Firefox at the development site here.
The same phrase "Accountantskantoor verschaeren-mertens" is shown twice, once in the sidebar and once in the upper right corner. As you ...
0
votes
0answers
16 views
How to insert symbols on Notepad++ before a point? [migrated]
Anyone have an idea about how to insert symbols on Notepad++ every X phrases (point-separated) and also before every linebreak? I am working with plain text.
Thank you in advance.
2
votes
7answers
81 views
Is there a way to control the line-height of a <br> tag within a heading tag?
[Please upvote if this thread helps you out, thanks...]
I have a heading (<h1>) that has a sort of tagline below (I used a <small> tag and set the font-size to a certain percent so it ...
2
votes
2answers
29 views
Disable line breaks using CSS
I have a canvas element inside a div element. The canvas size can change, and I want it vertical centered. I'm using this CSS approach:
<!DOCTYPE html>
<html lang="en">
<head>
...
0
votes
3answers
47 views
FileHelpers writing a CSV with line breaks within the fields
Using FileHelpers, my C# application reads a CSV and then processes the data. After processing, the data is written as another CSV. The output CSV has got line breaks within some fields. How can those ...
1
vote
1answer
49 views
Force linebreak OutputLabel
I have an outputLabel which contains a lot of text (about 5000 characters of text), the outputLabel has to add a new line after the line is about 200px, is this possible?
<p:outputLabel ...
0
votes
1answer
35 views
How to replace a Line break/new line in Google drawtable with PHP
The following content breaks my google.visualization.DataTable. I am pulling this from Google calendar.
// this one has a line break/enter/new line in google calendar after 5
Kanji lessons from 11 to ...
1
vote
1answer
48 views
DOS Batch that sends email via outlook: need to add new lines
Here is part of my batch:
start "" "C:\Program Files (x86)\Microsoft Office\Office12\OUTLOOK.EXE" /c ipm.note /m "email address&cc=email address 2;email address 3&subject=Very Important ...
0
votes
1answer
69 views
JavaScript Converting \n to \r\n
I am having some trouble converting simple \n to \r\n in JavaScript
var text = "Test1\nTest2\nTest3";
var converted = text.replace("/\\n/g", "\r\n");
Does anyone see what's wrong with the above ...
1
vote
2answers
219 views
Divide text in multiple lines in a single Excel cell using VBA
So i've been searching how to divide text depending on its length but couldn't find anything.
My question is : In Excel using vba code, is it possible to divide a line of text into several lines in a ...
0
votes
2answers
41 views
Linebreaks removed by pandoc
I am using pandoc to translate from html to markdown.
Pandoc is removing linebreak in the results.
Here is the command I am using:
pandoc -f html -t markdown_phpextra myfile.html
Is there any way ...
0
votes
1answer
32 views
Insert `\n` character, but don't actually break the line.
I want to replace the character | with \n but instead of actually breaking the line I want to insert the characters \n so when I open the file it says \n instead of actually breaking the line."
I've ...
0
votes
1answer
38 views
Menu bar breaks to the next line / fluctuates in size depending on zoom level
This is my menu bar at 100% on my browser:
And this is what happens at certain zoom levels and some other browsers:
Here's a simplified version on fiddle: http://jsfiddle.net/heetertc/ARGm8/6/
...
0
votes
1answer
37 views
Doxygen how to avoid line break spacing
How is it possible if I want to force a new line break via <br> or \n in doxygen to avoid the line spacing, e.g. for an address?
1
vote
2answers
62 views
Best way to align left after line break
As you see, I need to align text after line break.
First I tried table. but as you see each item has different width(like note, humidity...).
So I had to make each table to each item. I don't ...
0
votes
1answer
13 views
Line break with graphviz, HTML
I've created a graphviz table node:
<TR>
<TD COLSPAN="3" BGCOLOR="lightgrey">LineOne LineTwo</TD>
</TR>
I'd like to have Line1, Line2 in separate lines. I've tried ...
0
votes
2answers
55 views
php file upload missing line break
I have an excel file with data in several columns I want to upload with php (Mac 10.8.2, office2011).
After many detours with decoding issues I ended up with opening the excel file in word, ...
0
votes
2answers
45 views
Removing continuation characters in the middle of a string in Python
The standard return value from the Google maps API looks like this - after conversion from bytes to a string:
b'{\n "destination_addresses" : [ "Washington, DC, USA" ],\n "origin_addresses" : [ ...
0
votes
0answers
38 views
regex to insert zero-width spaces in Burmese text
Hats off to all who contribute their time and brain power here. I'm working with Burmese text, for which there are few resources.
To make linebreaking work OK in columns of Unicode text in Unicode, ...
0
votes
0answers
24 views
Appending textarea fields with line breaks using Safecracker
Another perplexing "is probably an easy fix" question:
I have an EE site, and am using Safecracker to maintain a customer data channel. Each week, the customer receives a notice about an upcoming ...
1
vote
1answer
35 views
TinyMCE issue in pasting the content from MSword-2010. No line break is seen if pasted directly
I am using tinyMCE for pasting description on front end of the site. Issue I am having is - when I try to paste the content taken out directly from MS Word 2010 I am not able to see the same line ...
0
votes
2answers
85 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
3answers
83 views
How to prevent a span from breaking into the next line - responsive webdesign?
Following simple list, where in every h4, there is a span at the end.
<ul class="items">
<li>
<h4>Prevent LineBreakOfPlus <span class="goto">o</span>
...
0
votes
1answer
112 views
PHP REGEX - removal of excess line breaks - String Manipulation Issue
I am inputting a dirty string (lots of spaces, line-breaks and extra false spaces just before punctuation characters.
my desired output is explained in the code below.
It seems that I can achieve to ...
1
vote
3answers
88 views
PHP's mail function seems to remove newlines and tabs
I have this helper class which I use to send E-Mails through PHP:
<?php
class Mailsend {
public $from;
public $to;
public $subject;
public $message;
public static function ...
2
votes
1answer
59 views
Using linebreak and line options at the same time
The documentation of linebreak says:
This option is not used when the 'wrap' option is off or 'list' is on.
I find this unsatisfactory. Is there a workaround to use certain listchars and ...
0
votes
2answers
63 views
Optional line-breaking HTML entity that is always invisible
I want an optional line-breaking character that is always invisible that works with the word-wrap: break-word; CSS style.
Here are some specifics. My goal is to break apart long links in reasonable ...
1
vote
1answer
97 views
How to find whether text in a text area is wrapped to multiple lines?
How can I find whether a long text in a textarea is wrapped into two or more lines?
I'm not talking about the new line chars as discussed here.
I'm aware of the plugin Textarea Line Count
Any ...
-1
votes
1answer
108 views
Convert Multiple Spaces to At Beginning of Line with Javascript
I'm working on a text input for the backend of a website. I want a couple things to be automatically corrected. Example, new lines in the textarea I convert to <br>. I also want to let the user ...
0
votes
1answer
29 views
How to ignore some HTML tags in JSLint?
I'm using 'nobr' HTML tag to avoid line breaks in forms, though, JSLint gives me errors
Is it possible to make JSLint ignore some HTML tags?
Thank you




