vote up 1 vote down star

string.Format() with it's "bla {0} bla" syntax is great. But sometimes I don't want to enumerate the placeholders. Instead I just want to map the variables sequentially in the placeholders. Is there a library that can do that?

For instance, instead of

string.Format("string1={0}, string2={1}", v1, v2)

something like

string.Format("string1={*}, string2={*}", v1, v2)
flag

But if you do that you cannot use the same variable in multiple places. Do you really want to type "Environment.NewLine" 10 times? – Ed Swangren Nov 6 at 0:16
1  
Perhaps he doesn't use 10 instances of Environment.NewLine in his string. I could certainly see circumstances where this could be a viable option, even desirable. – Adam Robinson Nov 6 at 1:00
Sure, and that's fine, I was just pointing it out. – Ed Swangren Nov 6 at 1:26

3 Answers

vote up 3 vote down check

You could accomplish this yourself by writing your own string extension coupled with the params keyword, assuming you're using .NET 3.5 or higher.

Edit: Got bored, the code is sloppy and error prone, but put this class in your project and using its namespace if necessary:

public static class StringExtensions
{
    public static string FormatEx(this string s, params string[] parameters)
    {
        Regex r = new Regex(@"\{\*\}", RegexOptions.IgnoreCase);

        for (int i = 0; i < parameters.Length; i++)
        {
            s = r.Replace(s, parameters[i], 1);
        }

        return s;
    }
}

Usage:

Console.WriteLine("great new {*} funtion {*}".FormatEx("one", "two"));
link|flag
Of course, now I can't use the same variable in multiple places. – Ed Swangren Nov 6 at 0:15
Could do better than run "Regex.Replace" once for every parameter - see my answer. – romkyns Nov 6 at 0:29
And you lose the ability to use formatting of parameters, e.g. string.Format("{*:dddd MMMM}", DateTime.Now). Whats wrong with specifying the paramter number? – Michael Baldry Nov 6 at 0:31
2  
Why are you people objecting to this in the answer? This was the point of the question. If you want to object to the question, then make a comment there. – Adam Robinson Nov 6 at 0:59
1  
This is buggy. I would expect "{*}, {*}, {*}".FormatEx("a", "{*}", "b") to output "a, {*}, b", but yours outputs "a, b, {*}" because it replaces the replaced {*} again. Romkyns's answer below works properly. – Timwi Nov 6 at 11:36
show 5 more comments
vote up 1 vote down

Here's a possibly faster version using Regex.Replace. Warning: no support for escaping the {*}, or nice error messages when you go out of range or don't supply enough arguments!

public static class ExtensionMethods
{
    private static Regex regexFormatSeq = new Regex(@"{\*}", RegexOptions.Compiled);

    public static string FormatSeq(this string format, params object[] args)
    {
        int i = 0;
        return regexFormatSeq.Replace(format, match => args[i++].ToString());
    }
}
link|flag
1  
Congrats on posting an answer that actually works, unlike the broken one that inexplicably got accepted and voted up. – Timwi Nov 6 at 11:37
vote up -2 vote down

If I'm just writing out a series of variables without special formatting, I often prefer to just concatenate them e.g.:

Console.WriteLine("string1=" + var1 + " string2=" + var2);

Note the leading space in front of "string2", to separate the two results.

link|flag

Your Answer

Get an OpenID
or

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