Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
2k views

Best way to split string into lines

How do you split multi-line string into lines? I know this way var result = input.Split("\n\r".ToCharArray(), StringSplitOptions.RemoveEmptyEntries); looks a bit ugly to me and it looses empty ...
5
votes
5answers
270 views

How to execute multi-line statements within Python's own debugger (PDB)

So I am running a Python script within which I am calling Python's debugger, PDB by writing: import ipdb; ipdb.set_trace() (iPython's version of PDB, though for the matter I don't think it makes a ...
5
votes
8answers
791 views

Best syntax to create multi-line string

What's the best way to create multi-line string in C#? I know the following methods: Using StringBuilder var result = new StringBuilder().AppendLine("one").AppenLine("two").ToString() looks too ...
5
votes
5answers
817 views

How can I delete characters between < and > in Perl?

I need to write a Perl script to read in a file, and delete anything inside < >, even if they're on different lines. That is, if the input is: Hello, world. I <enjoy eating bagels. They are ...
4
votes
1answer
1k views

sed or awk multiline replace

I am trying to append formatting to all /* TODO : ... */ tags, but I am having trouble in the multi-line area. I can do single line sed's; but for multiline sed and awk, I don't know. How do I do ...
4
votes
5answers
6k views

How do I set a textbox to multi-line in SSRS?

I have a report with many fields that I'm trying to get down to 1 page horizontally (I don't care whether it's 2 or 200 pages vertically... just don't want to have to deal with 2 pages wide by x pages ...
3
votes
2answers
79 views

JButton and JField labels/text?

I have a JButton that I would like to fill in with text that would spread in two lines, however, when I type in the test and use "\n" or "\r" I still get the text on one line. This is the case with ...
3
votes
3answers
870 views

How to do multiline search using regular expression?

I am new to regular expressions. I want to do multiline search. Here is the example of what I want to do: Suppose I have following text: *Project #1: CVC – Customer Value Creation (Sep 2007 – ...
2
votes
0answers
109 views

Blackberry: Multiline ListView

I have made list view with checkboxes. I have read similar articles n many people have suggested to do changes in drawlistRow but it is not happening. Can u suggest me where should i change to make it ...
2
votes
5answers
244 views

newline character in JLabel.setText()

How can I insert a newline when I am using JLabel.setText()? I tried to use Html but can seem to make it work for setText, only for the initial declaration of the jLabel the way to do it when ...
2
votes
2answers
301 views

Javascript regular expression string-replacement of multi-line strings

With JavaScript regular expression replace, trying to replace anything between <head> and </head> tags so that: <head> Multiline foo </head> <body> Multi line bar ...
2
votes
5answers
483 views

new line in a multi-line string

Trying to override a tostring in one of my classes. return string.Format(@" name = {0} ID = {1} sec nr = {2} acc nr = {3}", ...
2
votes
0answers
343 views

C multi-line macros [closed]

Possible Duplicate: What’s the use of do while(0) when we define a macro? Why do people use do { statement1; statement2; statement3; etc; } while(0); instead of the shorter form ...
2
votes
4answers
2k views

What's the simplest way to return the first line of a multi-line string in Perl?

When I say simple, I mean, within an expression, so that I can stick it in as a value in a hash without preparing it first. I'll post my solution but I'm looking for a better one that reminds me less ...
1
vote
1answer
109 views

How to add comment to lines of multi-line command?

I want to add comments to lines of multi-line command. How can I do this? Next code is wrong, but how to make it correct? [string] $filter = "(&" + ` "(objectClass=user)" + ` # User ...
1
vote
3answers
132 views

Is there any MultiLine JLabel exist?

I want to display some text in JLabel at runtime. I just want to know that is there anyway through which the text is dispalyed on multiple line e.g i want my text to be displayed in following format: ...
1
vote
3answers
130 views

Conditional Multi-Line Grep Problem [closed]

I have a very large file I want to extract lines from. I'm hoping Grep can do the job, but I'm running into problems. I want to return all lines that match a pattern. However, if the following line ...
1
vote
1answer
562 views

Using Jquery in UserControl with MasterPage

I can't seem to get Javascript to work on my usercontrol. All I want to do is count the characters in a mulitline textbox (which adds another level of complexity). I want to count the characters and ...
1
vote
2answers
920 views

Replace block of text in vs2008

is there any way how to replace block of text (multi-line) in VS2008(VS2005)? So far I know VS2008 supports only single line replacing. Any tips welcome, cheers X. EDIT: thanks for tips guys. I was ...
0
votes
1answer
40 views

Multi-line HTTP Headers Confusion

In HTTP headers can be multi-line. For example: Word-Of-The-Day: The Fox Jumps Over         the brown dog. However, when reading the standard, I came ...
0
votes
2answers
117 views

how can I display multiple lines of text on a button

My button's layout_width set to match_parent. In order to display multi lines on the button, I tried: insert '\n' into the text on button set Singleline false set Maxlines to 2 or 3 convert html ...
0
votes
1answer
57 views

multiline datagridviewcell while in edit mode

I am using the following code so that gridview cell support multiline while in edit mode : private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs ...
0
votes
1answer
78 views

Multi row insert fail

I'm using PostgreSQL 7.4.19. Why can I not use a basic SQL statement as INSERT? I am running online examples (from the blog 'Faster INSERT for Multiple Rows'): create table things (things_id serial ...
0
votes
2answers
150 views

Android multi-line textview - character count of a particular line?

I'm trying to get the character count of a particular line of a multi-line textview. Based on other posts, I've gotten the Layout of the textview in question. I see several methods that pass in an ...
0
votes
1answer
418 views

Python multi-line input

Is there any way to have multi-line input in Python? Solutions I have seen don't allow you to edit past lines after you have pressed enter and have other problems. I am making a simple text editor in ...
0
votes
2answers
52 views

PHP <<< (multi-line handler?) question

I have some code as follows: $query = <<<QUERY SELECT * FROM names WHERE create_date > date('Y-m-d H:i:s'); QUERY How can I put the date('Y-m-d H:i:s') in there without ...
0
votes
2answers
813 views

Xslt and multi-line text (Sitecore)

I have a field in item (multi-line text) which i output in my xslt rendering. The problem is that carrigae return are not shown in my output - what do i need to do to make my xslt output show the ...
0
votes
2answers
415 views

Are Multiline macros in GCC supported

Are multi-line macros supported(compilable) in gcc version 3.2.4. I am trying to build my source which has multi-line macros on a linux host using above mentioned gcc version. I get compilation error ...