Text that spans more than one line is considered "multiline". Concerns about wrapping, spacing, techniques and best practices.
0
votes
1answer
26 views
Android multiline number edittext
I want to create an EditText in Android which has several lines and number input. It is for the input of a matrix. I already have a solution to set android:inputType="textMultiLine" and then ...
2
votes
2answers
48 views
Php assigning multiple strings to a single variable
Is there a cleaner way to assign multiple strings to a single variable in php?
I current do like this
<?php
$myStr = '';
$myStr .= 'John';
$myStr .= '<br>';
$myStr .= 'Paul';
$myStr .= ...
0
votes
0answers
18 views
Why can I not click a small CheckedListBox?
I have created a CheckedListBox control with 4 elements in C#. Multicolumn is set to true. As soon as I make the height of the control small enough to contain only a single row, I can no longer ...
0
votes
0answers
18 views
Tabris Button Height
I'm trying to make a multiline button, but the text gets cut off.
Button button = new Button( containerButton, SWT.PUSH );
button.setText( "Hello\nWorld" );
Is it possible to adjust the height of ...
0
votes
0answers
33 views
use of Html.fromHtml for multiline text on button
I am working on android keyboard where i have one problem.
Earlier i used Html.fromHtml to write multiline text on android button,
for this i used,
Html.fromHtml("<font ...
0
votes
1answer
32 views
MVC multiline newline constants causing sql server truncation
I have a simple Description string field, on an MVC Model which has these attributes:
[DataType(DataType.MultilineText)]
[DescriptionField]
public string Description { get; set; }
My custom ...
1
vote
2answers
48 views
Count number of lines in JTextArea given set width
I'm trying to reliably count the number of lines (including those from line wraps and line breaks) in a JTextArea given a set width. I'm using this information to set the height of other components in ...
1
vote
1answer
43 views
C# + Windows CE + Multiline & Align label
I need to make a multiline label with vertical and horizontal alignment and I don't know how I can do it !
I have found a way to make any control multiline with this function :
private const int ...
1
vote
2answers
48 views
Print line after multiline match with sed
I am trying to create a script to pull out an account code from a file. The file itself is long and contains a lot of other data, but I have included below an excerpt of the part I am looking at ...
2
votes
2answers
52 views
Match Multiple Line Regex Javascript
I have beat my head against the wall for the better part of the night so I am looking to the stackoverflow Gods to help with this. I have a text string that I am attempting to parse into an array. ...
0
votes
1answer
49 views
Split on multiple newline characters in bash
I need to split on regex pattern of 2 or more newlines and store each of the matching group as element of an array in bash. awk and sed didn't help because they work on a single line at once. My input ...
1
vote
1answer
36 views
Matching embedded newlines in python regex
What is the way to handle this? I have tried various permutations of strings, raw strings and (?is), re.DOTALL, but have been uniformly unsuccessful.
Following is a sampling of what I have tried:
...
3
votes
4answers
103 views
Multi-line documentation strings in Lisp
I'm trying to get better about writing documentation for my CLOS classes, but am perplexed by how to handle multi-line strings.
Currently I have this:
(defclass document () ()
(:documentation ...
0
votes
1answer
15 views
Multiline textbox in Formview with DynamicDataTemplatesCS
Using model binding with the above like so:
<asp:FormView runat="server" ID="ConversationForm" DefaultMode="Edit"
OnCallingDataMethods="ConversationForm_CallingDataMethods"
...
1
vote
2answers
59 views
How to search and replace across multiple lines with perl?
$ perl --version
This is perl, v5.10.1 (*) built for x86_64-linux-gnu-thread-multi
$ echo -e "foo\nbar" > baz.txt
$ perl -p -e 's/foo\nbar/FOO\nBAR/m' baz.txt
foo
bar
How can I get this ...
2
votes
0answers
29 views
Multiline errorformat in vim
I'm trying to match on C error messages like this:
gmake[1]: Entering directory `/project/swbuild45/ethanl/swfeature_int/pkt'
...
sw/se/xc/bsd/routing/rib/src/rib_bfd_thrd.c: In function ...
-1
votes
1answer
58 views
ruby multiline grep in file
I'd like to find all cases where a c++ method doesn't end with "NULL);" (any number of spaces between the NULL and the ) and the ; should still let it match).
my code is:
Dir['**/*'].select { |f| ...
0
votes
1answer
35 views
Android: Multiline TextView in Horizontal LinearLayout
I want to add a multiline TextView in my LinearLayout. Following is my code but it is not working. On device it just shows single line.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
1answer
91 views
Format multiline command output in bash using printf
My Bash script uses printf to print output of some other commands with formatting applied, in the following manner (note the two leading spaces):
printf " %-16s %s\n" "foo:" "$(bar)"
The two ...
0
votes
0answers
24 views
How do you get text-overflow: ellipsis to work in a multiline cell? [duplicate]
I have a table that has cells of variable widths and heights set by percentage and I want to have the text truncated like it is with text-overflow: ellipsis; but I want the text to fill my cell with ...
0
votes
1answer
95 views
VBScript Regex: Match everything except multi-line pattern
There is a very similar question to the question I need answered (Regex / Vim: Matching everything except a pattern, where pattern is multi-line?): I need to convert the following Vim regular ...
0
votes
3answers
48 views
What kind of statements,keywords,arguments etc can span multiple lines,and what need “\” for this?
How to know what kind of "things" can span multiple lines in C code without needing a \ character at the end of the line?And what kind of "things" need the \?How to know that?For example, in the ...
0
votes
1answer
45 views
Paste a multiline string in NetBeans IDE
Is there a way to paste a multiline string in the NetBeans IDE and have it automatically converted to a string literal (with " escaped to \"), similar to the Eclipse option?
This can be very helpful ...
0
votes
2answers
52 views
Need a hand with regex in c# that spans multiple rows
I am trying to parse out an html page that has table rows in it. I need to get all of the table cells within a table row.
Here's a sample of the html that I"m trying to parse:
<tr ...
0
votes
1answer
65 views
How to add a new line in a textbox's text?
I have an ASP.NET Textbox control. It's Multiline property is set to true, effectively making it an HTML textarea element.
The text of the textbox is set as,
Text="New\r\nLine\r\nRequired"
As you ...
0
votes
3answers
236 views
Writing multiple lines to file and then reading them with Python
I've just undertaken my first proper project with Python, a code snippet storing program.
To do this I need to first write, then read, multiple lines to a .txt file. I've done quite a bit of googling ...
0
votes
0answers
104 views
Custom ComboBox with two lines of text and an image - strange DrawItem behavior
I am trying to build a custom ComboBox Control that will draw two lines of text and a right-aligned image for each of its items. I have the elements all positioned correctly, but there is something ...
0
votes
2answers
57 views
How to trigger Perl multiline substitution
I have a folder of HTML files which have the below DOCTYPE declaration which I need to remove, so that a not-very-good parser can successfully load it as XML.
I've been trying to use perl to do the ...
0
votes
0answers
46 views
vb6 text control when property set to multiline cannot hightlight text past box length, have to use right directional key
When I set the multiline property of the text control to true, when in use, if the text control is used as a basic one line textbox and the text typed in goes past the length of the box, it only ...
0
votes
2answers
92 views
Displaying multiple line text in JLabel
I have a problem to display multiple line in Jlabel. I tried to use html tag and that didn't helped me. I just wonder why the following code is not working. I used <br> tag and till it displays ...
0
votes
2answers
42 views
Split mulitple part of string in some html div with id
HI i need to split some part of variable value
in my html file i got a dynamic value of variable some thing like this
product/roe_anythin_anything-1.jpg
product/soe_anything_anything-2.jpg
i ...
0
votes
0answers
37 views
Checks when there is a value A and some lines below does not appear a desired value B
I´ll receive files like this:
ValueA
Line1
Line2
...
LineN
NoValueB
ValueC
Line1
Line2
...
LineN
ValueB
I´m trying to make a regular expression to check when ValueB is not present.
So, I have the ...
0
votes
2answers
146 views
Android multiline edittext not increasing its height as the user types
So the layout is quite simple. A ListView occupying most of the screen, and a RelativeLayout at the bottom containing the EditText and a Button to the right. Everything looks great, but the problem is ...
0
votes
2answers
49 views
How to easily write a multi-line file with variables (python 2.6)?
At the moment I'm writing a multi-line file from a python program by doing
myfile = open('out.txt','w')
myfile.write('1st header line\nSecond header line\n')
myfile.write('There are {0:5.2f} people ...
0
votes
1answer
122 views
C# - replace multiline string and copy to another textbox
I am having a brain-aching problem, which I hope you guys could help.
I have a textBox1 containing multiline string as follow:
filewith.dl_
somefiles.sy_
morewith.ex_
textBox1 contains a files ...
1
vote
3answers
42 views
PCRE regex multi-line match help needed
I am having trouble matching the pattern, "This program cannot be run" whenever the phrase is broken over multiple lines, e.g.:
This program cannot be run
T
his program cannot be run
Thi
s program ...
-2
votes
2answers
146 views
Merge two multiline textboxes in vb net
I need to combine two multiline textboxes in vb net, like this:
textbox1:
a
b
c
d
textbox2:
1
2
3
4
textbox3:
a1
b2
c3
d4
Just a form with three textboxes. And a button to ...
1
vote
2answers
48 views
html text tag running into the next line on mobile
My code is as follows
<div data-role="content" id="div1" align="top" style="padding:3 !important;" >
<table border="0" align="CENTER" cellspacing="0" width="100%" style="vertical- ...
1
vote
2answers
68 views
preg_match, addslashes,mb_substr not working for long strings
I am parsing an html file. I have a big string which is basically a script.
The string looks likes this:
var spConfig = new
...
0
votes
4answers
96 views
How would I write multiple lines of text to a file all at once?
I need to write lots of text to a file at once, but It has to be formatted in a specific way and not all in one line.
The code I have is:
If System.IO.File.Exists(filepath) Then
Using ...
0
votes
3answers
153 views
Combine two multiline textboxes in VB.NET
I need to combine two multiline textboxes in vb net, like this:
textbox1:
a
b
c
d
textbox2:
1
2
3
4
textbox3:
a1
b2
c3
d4
Just a form with three textboxes. And a button to ...
0
votes
1answer
168 views
How can I delete the selected Lines in Multi line Text Box?
My code below here I used "SelectedLines" to find the current selected lines by user, AllLines to find the no of total lines in Multi line text box. in last for loop when i=1 it runs successfully but ...
0
votes
3answers
70 views
Multiline regex pattern to delete blank lines
/* Comments for code... */
if (...) {
}
I need to delete the blank line between the comment and the if:
/* Comments for code... */
if (...) {
}
I am currently using the following regex:
...
0
votes
1answer
79 views
Multi line uitextview
I was hoping I can get some help with creating a username and password box similar to the one Yahoo uses on their iPhone app. It seems to have a separator in the single textview box. I'm still new to ...
1
vote
1answer
58 views
Is it possible to put different colors for text in multiple line textbox
I have one text box with multiple line option. Now i want type the words inside the text box with different font-size and different colors. Is it possible?
0
votes
2answers
43 views
Regex multiline strange behaviour
I have a string like this:
string text = "ext_bus 0 0/0/3/0.0 side CLAIMED INTERFACE IDE Primary Channel\r\ntarget 0 0/0/3/0.0.0 tgt CLAIMED DEVICE ...
0
votes
1answer
183 views
How to add a multi line text to a JButton with the line unknown? (dynamically) [duplicate]
How do you make the text on a JButton multiline? I have read that most use HTML, but what happens when it is dynamic and you don't know the size of the lines, or what the lines are?
Right now the ...
2
votes
2answers
76 views
Display different labels on different lines
I basically want the different labels to come on different lines.
protected void Button2_Click(object sender, EventArgs e)
{
Label2.Text = Label3.Text + Label1.Text;
}
I want the Label1.Text to ...
0
votes
2answers
62 views
How to obtain an array of values from a RegEx operation on a multiline variable in Perl?
After a couple of days reading StackExchange posts and endless trial and error, I decided to ask the world to help me.
I have the following multiline string stored in $received_data and I need to ...
0
votes
0answers
90 views
Sharepoint Comments (MultiLine Text) show in Shared Services Report
I am trying to get the "Comments" (Multiline text field) out of Sharepoint list into a Shared Services report. Here is what I have tried:
1) Create a view on top of the list. This shows a comments ...


