Is there an easy way to create a multiline string literal in C#?

Here's what I have now:

string query = "SELECT foo, bar"
+ " FROM table"
+ " WHERE id = 42";

I know PHP has

<<<BLOCK

BLOCK;

Does C# have something similar?

link|improve this question

There are no line breaks in your example. Do you want them? – weiqure Jul 8 '09 at 20:08
No. I only wanted multiple lines for visibility/code cleanliness reasons. – Chet Jul 8 '09 at 20:10
2  
In that case, verbatim strings contain the line breaks. You can use @"...".Replace(Environment.NewLine,"") if you like. – weiqure Jul 8 '09 at 20:13
@weiqure Thanks, good tip! – Chet Jul 8 '09 at 20:20
feedback

3 Answers

up vote 71 down vote accepted

You can use the @ symbol in front of a string to form a verbatim string literal:

string query = @"SELECT foo, bar
FROM table
WHERE id = 42";

You also do not have to escape special characters when you use this method, except for double quotes as shown in Jon Skeet's answer.

link|improve this answer
5  
It's a string literal anyway - it's a verbatim string literal with the @ sign. – Jon Skeet Jul 8 '09 at 20:08
1  
if your string contains double-quotes ("), you can escape them like so: "" ( thats two double-quote characters) – Muad'Dib Jul 8 '09 at 20:09
@Jon and @John, haha, both great answers, thanks. I'm not sure of proper SO protocol for choosing answers, but this one solved it for me first. – Chet Jul 8 '09 at 20:25
feedback

It's called a verbatim string literal in C#, and it's just a matter of putting @ before the literal. Not only does this allow multiple lines, but it also turns off escaping. So for example you can do:

string query = @"SELECT foo, bar
FROM table
WHERE name = 'a\b'";

The only bit of escaping is that if you want a double quote, you have to double it:

string quote = @"Jon said, ""This will work,"" - and it did!";
link|improve this answer
4  
You may want to also say that verbatim string literals use "" to escape double quotes. – Andrew Hare Jul 8 '09 at 20:08
1  
I did, a few minutes ago :) – Jon Skeet Jul 8 '09 at 20:10
feedback

One other gotcha to watch for is the use of string literals in string.Format. In that case you need to escape curly braces/brackets '{' and '}'.

// this would give a format exception
string.Format(@"<script> function test(x) 
      { return x * {0} } </script>", aMagicValue)
// this contrived example would work
string.Format(@"<script> function test(x) 
      {{ return x * {0} }} </script>", aMagicValue)
link|improve this answer
4  
Thanks - I was googling for exactly this – Jaco Pretorius Oct 20 '10 at 15:22
And what difference does it make? With or without "@" you have to double "{{" to get "{" as printable character, it is matter of String.Format, not string content. – macias Aug 27 '11 at 13:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.