Top "Multiline" questions

Text that spans more than one line is considered "multiline". Concerns about wrapping, spacing, techniques and best practices.

How do I enter a multi-line comment in Perl?

Possible Duplicate: What are the common workarounds for multi-line comments in Perl? How do I add a multi-line comment to …

perl comments multiline perl-data-structures
How do you write multiline strings in Go?

Does Go have anything similar to Python's multiline strings: """line 1 line 2 line 3""" If not, what is the preferred way of …

string go multiline
Regular expression matching a multiline block of text

I'm having a bit of trouble getting a Python regex to work when matching against text that spans multiple lines. …

python regex multiline
Split code over multiple lines in an R script

I want to split a line in an R script over multiple lines (because it is too long). How do …

r multiline
Way to create multiline comments in Bash?

I have recently started studying shell script and I'd like to be able to comment out a set of lines …

shell comments multiline
What is the proper way to format a multi-line dict in Python?

In Python, I want to write a multi-line dict in my code. There are a couple of ways one could …

python indentation code-formatting multiline
How to get multiline input from user

I want to write a program that gets multiple line input and work with it line by line. Why there …

python input multiline
Why doesn't Python have multiline comments?

OK, I'm aware that triple-quotes strings can serve as multiline comments. For example, """Hello, I am a multiline comment""" and …

python comments multiline
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.…

c# string syntax multiline
Android: Vertical alignment for multi line EditText (Text area)

I want to have 5 lines for the height of the text area. I am using the following code. <EditText …

android android-edittext vertical-alignment multiline