Putting { in verbatim string with C# [duplicate]
Asked Answered
P

3

14

Possible Duplicate:
How to escape brackets in a format string in .Net

How do I put { or } in verbatim string in C#?

using System;

class DoFile {

    static void Main(string[] args) {
        string templateString = @"
        \{{0}\}
        {1}
        {2}
        ";
        Console.WriteLine(templateString, "a", "b", "c");
    }
}

I get error when I use '{' or '}' in verbatim string, I guess it's because '{' or '}' is used for parameter marking such as {0}, {1}, {2}. \{ doesn't work.

Unhandled Exception: System.FormatException: Input string was not in a correct format.
  at System.String.ParseFormatSpecifier (System.String str, System.Int32& ptr, System.Int32& n, System.Int32& width, System.Boolean& left_align, System.String& format) [0x00000] in <filename unknown>:0 
  at System.String.FormatHelper (System.Text.StringBuilder result, IFormatProvider provider, System.String format, System.Object[] args) [0x00000] in <filename unknown>:0 
Prader answered 13/5, 2011 at 19:36 Comment(2)
Can you include the line of code that fails? Looks like you're using a variant of .Format which does treat { specially.Purse
This is a problem because of using Format, not because of using a verbatim string.Erysipelas
I
17

You just have to escape with double curly brackets..

{{ or }} respectively..

Something like below

string.Format("This is a format string for {0} with {{literal brackets}} inside", "test");

This is a format string for test with {literal brackets} inside

Introject answered 13/5, 2011 at 19:37 Comment(0)
C
8

You put two like such {{ or }}.

Chui answered 13/5, 2011 at 19:37 Comment(0)
A
0

There is nothing special about putting { and } in a string, they should not be escaped. Besides, the escape character \ has no effect in a @ delimited string.

To use literal { and } in the format for the String.Format method, you double them. So, your format string would be:

string templateString = @"
    {{{0}}}
    {1}
    {2}
    ";
Anthesis answered 13/5, 2011 at 19:43 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.