vote up 11 vote down star
1

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.

flag

2 Answers

vote up 20 vote down check

Actually your example outputs: foo {0}

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 }}.

link|flag
It doesn't output "foo {0}" because the parser tries to find parameter 0, doesn't find it and throws an parse exception. but it it would find {0} somewhere else int the string "{{0}}" would be output as "{0}". And thank your for your answer. – Pop Catalin Sep 18 '08 at 10:12
"{{" is treated as the escaped bracket character in a format string. – icelava Sep 18 '08 at 10:18
vote up 2 vote down

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);
link|flag

Your Answer

Get an OpenID
or

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