Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can brackets be escaped in a C# format string so, something like :

String val = "1,2,3"
String.Format(" foo {{0}}", val); 

doesn't throw a parse exception but actually outputs the string " foo {1,2,3}"

Is there a way to escape the brackets or should a workaround be used.

share|improve this question
1  
MSDN String Formatting FAQ msdn.microsoft.com/en-us/netframework/aa569608: How do I write out a curly bracket in string formats? Do escaped curly brackets have any odd behaviors I need to be aware of? How can I use string formatting to write out something like "{42.00}"? – gerryLowry Nov 5 '11 at 9:30
2  
The example above outputs " foo {0}", and doesn't throw a parse exception. – fishbone Jan 17 '12 at 16:36

4 Answers

up vote 318 down vote accepted

For you to output foo {1, 2, 3} you have to do something like:

string t = "1, 2, 3";
string v = String.Format(" foo {{{0}}}", t); ;

To put a { you use {{ and to put a } you use }}.

share|improve this answer
16  
"{{" is treated as the escaped bracket character in a format string. – icelava Sep 18 '08 at 10:18
But if you want to add value formatting to your string specifier you need also to read the answer from Guru Kara below. – Nick Mar 1 at 17:24
Read the section Escaping Braces in the official documentation Composite Formatting. – Jeppe Stig Nielsen Apr 7 at 9:32

Almost there! The escape sequence for a brace is {{ or }} so for your example you would use:

string t = "1, 2, 3";
string v = String.Format(" foo {{{0}}}", t);
share|improve this answer

You can use double open brackets and double closing brackets which will only show one bracket on your page.

share|improve this answer

Yes to output { in string.Format you have to escape it like this {{

So this

String val = "1,2,3";
String.Format(" foo {{{0}}}", val);

will output "foo {1,2,3}".

BUT you have to know about a design bug in C# which is that by going on the above logic you would assume this below code will print {24.00}

int i = 24;
string str = String.Format("{{{0:N}}}", i); //gives '{N}' instead of {24.00}

But this prints {N}. This is because the way C# parses escape sequences and format characters. To get the desired value in the above case you have to use this instead.

String.Format("{0}{1:N}{2}", "{", i, "}") //evaluates to {24.00}

Reference Articles String.Format gottach and String Formatting FAQ

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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