Text that spans more than one line is considered "multiline". Concerns about wrapping, spacing, techniques and best practices.
0
votes
2answers
33 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
23 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
39 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
17 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
45 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
43 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
43 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
29 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
36 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
49 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
97 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
72 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
43 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
38 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
53 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
36 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
34 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
90 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
46 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
90 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
33 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
83 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
42 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
58 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
73 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
99 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
132 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
65 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
54 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
55 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
41 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
106 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
70 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
59 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
81 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 ...
0
votes
2answers
67 views
Multiline in CGridView column
I have been searching through the internet for an answer to my question but I haven't found one. My problem is that I have column in my CGridView that contains a blob. My blob is a comment that is ...
0
votes
1answer
108 views
Regex - Match multiline blocks of HTML code
I have a problem with my regular expression. I need to match blocks of HTML.
Example-Block here:
<tr class="tr-list " data-id="XX">
<td class="ip-img"><div ...
1
vote
1answer
195 views
hide css3 multiline ellipsis read more link when there is no use
I have a little problem. i figured out a way to use crossbrowser multiline ellipsis.
Here is my less css mixin. As you can see, this version works perfect in webkit and "ok" in all ohter browsers.
...
0
votes
1answer
171 views
Multiline textbox auto height
I have multiple multiline textboxes that I fill from a database table. When typing in them the height auto-expands and adjusts in height to the # of rows of text being entered so all rows of text can ...
0
votes
2answers
35 views
New lines dissapear when reading .txt from Android
Doing this
String t = "asd\nasd";
TextBox objTxt = (TextBox)messageBox;
bjTxt.Text = t;
doesnt show
asd
asd
as expected, it shows
asdasd
why, its driving me crazy. TextBox is set to ...
1
vote
0answers
64 views
IntelliJ Multiline edit at end of each line?
In IntelliJ we can do multiline edit at the same position on each line with Alt + Shift + Insert. Can we do multiline edit at the end of each line when the length of each line is different? A usage ...
0
votes
5answers
142 views
How do I do multiline with TextView
I have an Activity called MainActivity.java, with an activity_main.xml file. But I don't know how to create multi line textviews when I try to add the second line it puts both lines on the same line ...
1
vote
0answers
173 views
Multi-Line Spinner Wont Work
I have trying to get my multi-line spinner to work, thought I can not work out why it wont! (It just shows single line - so the text runs off the edge). I have read this, but still doesn't work.
Here ...
1
vote
3answers
50 views
Replacing variables into a multiline shell variable
I'm building an email message by reading some rows from a database into a multiple line shell variable called EMAIL_DESC:
EMAIL_DESC=`run "select text from ETL.MAIL_TEXT where ID=1 order by id, ...
1
vote
3answers
50 views
Regex using Multiline and Groups
Hi guyes just had a quick question about using multi-line in regex:
The Regex:
string content = Regex.Match(onix.Substring(startIndex,endIndex - startIndex), @">(.+)<", ...
0
votes
0answers
195 views
How to have both singleLine=“false” AND imeOptions=“actionNext” for EditText?
Background
Suppose you have multiple EditText instances.
You wish to be able to switch between them using the next button of the keyboard (that is used as a replacement of the ENTER key).
Each ...
0
votes
2answers
115 views
Making a very long word fit in responsive element?
I'm using Twitter Bootstrap.
<div class="container">
<div class="row-fluid">
<h1>VeryLongWordHere</h1>
</div>
</div>
JSfiddle
On mobile ...
2
votes
0answers
115 views
How to render a multiline UILabel with NSMutableAttributedString
I am trying to create a multiline UILabel with an NSMutableAttributedString.
This works fine when I assign an attribute to the complete string like this:
UILabel *contentLabel = [[UILabel alloc] ...
3
votes
1answer
578 views
How do i vertically center align div with dynamic multiple line text
Below is the CSS i am using:
.flip-container
{
-webkit-perspective: 1000;
-moz-perspective: 1000;
perspective: 1000;
}
.flip-container:hover ...



