vote up 12 vote down star
11

I need to create a very long string in a program, and have been using String.Format. The problem I am facing is keeping track of all the numbers when you have more than 8-10 parameters.

Is it possible to create some form of overload that will accept a syntax similar to this?

String.Format("You are {age} years old and your last name is {name} ",
{age = "18", name = "Foo"});
flag

4 Answers

vote up 29 vote down check

How about the following, which works both for anonymous types (the example below), or regular types (domain entities, etc):

static void Main()
{
    string s = Format("You are {age} years old and your last name is {name} ",
        new {age = 18, name = "Foo"});
}

using:

static readonly Regex rePattern = new Regex(
    @"(\{+)([^\}]+)(\}+)", RegexOptions.Compiled);
static string Format(string pattern, object template)
{
    if (template == null) throw new ArgumentNullException();
    Type type = template.GetType();
    var cache = new Dictionary<string, string>();
    return rePattern.Replace(pattern, match =>
    {
        int lCount = match.Groups[1].Value.Length,
            rCount = match.Groups[3].Value.Length;
        if ((lCount % 2) != (rCount % 2)) throw new InvalidOperationException("Unbalanced braces");
        string lBrace = lCount == 1 ? "" : new string('{', lCount / 2),
            rBrace = rCount == 1 ? "" : new string('}', rCount / 2);

        string key = match.Groups[2].Value, value;
        if(lCount % 2 == 0) {
            value = key;
        } else {
            if (!cache.TryGetValue(key, out value))
            {
                var prop = type.GetProperty(key);
                if (prop == null)
                {
                    throw new ArgumentException("Not found: " + key, "pattern");
                }
                value = Convert.ToString(prop.GetValue(template, null));
                cache.Add(key, value);
            }
        }
        return lBrace + value + rBrace;
    });
}
link|flag
excellent - I like it! – Preet Sangha Aug 24 at 12:36
I didn't now you could use anonymous types like this. It's not just .net 4 is it? – Preet Sangha Aug 24 at 12:38
2  
Plus it'll work for domain entities, i.e. Format("Dear {Title} {Forename},...", person) – Marc Gravell Aug 24 at 12:38
1  
@Preet - C# 3.0, so VS2008 or the .NET 3.5 compiler, but fine targetting .NET 2.0 – Marc Gravell Aug 24 at 12:39
1  
thank you. It's a lovely bit of language usage! – Preet Sangha Aug 24 at 12:41
show 13 more comments
vote up 2 vote down

not quite the same but sort of spoofing it... use an extension method, a dictionary and a little code:

something like this...

  public static class Extensions {

        public static string FormatX(this string format, params KeyValuePair<string, object> []  values) {
            string res = format;
            foreach (KeyValuePair<string, object> kvp in values) {
                res = res.Replace(string.Format("{0}", kvp.Key), kvp.Value.ToString());
            }
            return res;
        }

    }
link|flag
Extension method does not work, String.Format is static. But you can just create a new static method. – Stefan Steinegger Aug 24 at 12:28
sure you're right! Just another top of my head go... – Preet Sangha Aug 24 at 12:39
vote up 1 vote down

What about if age/name is an variable in your application. So you would need a sort syntax to make it almost unique like {age_1}?

If you have trouble with 8-10 parameters: why don't use

"You are " + age + " years old and your last name is " + name + "
link|flag
+1 for the simplicity and willingness to buck the string.Format requirement in the original question. Though i do like Marc Gravell's solution. – psasik Aug 24 at 13:54
In my simple example, you could, but when you are outputting say, HTML, it gets even harder to read. string test = "<input type=""" + age + """ name=""" + name + """ />"; – Espo Aug 26 at 7:21
so true, it really depends on the usage. Even String.Format with html is crappy to read – PoweRoy Aug 26 at 7:49
Absolutely un-localizable! – Serge - appTranslator Oct 9 at 9:57
yeah but there's no requirement so why bother... Making complex things just to make it possible easier later on, it's just wasting time. – PoweRoy Oct 9 at 10:32
vote up 1 vote down

primitive implementation:

public static class StringUtility
{
  public static string Format(string pattern, IDictionary<string, object> args)
  {
    StringBuilder builder = new StringBuilder(pattern);
    foreach (var arg in args)
    {
      builder.Replace("{" + arg.Key + "}", arg.Value.ToString());
    }
    return builder.ToString();
  }
}

Usage:

StringUtility.Format("You are {age} years old and your last name is {name} ",
  new Dictionary<string, object>() {{"age" = 18, "name" = "Foo"}});

You could also use a anonymous class, but this is much slower because of the reflection you'll need.

For a real implementation you should use regular expression to

  • allow escaping the {}
  • check if there are placeholders that where not replaced, which is most probably a programming error.
link|flag

Your Answer

Get an OpenID
or

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