vote up 17 vote down star
8

Is there any way to format a string by name rather than position in C#?

In python, I can do something like this example (shamelessly stolen from here):

>>> print '%(language)s has %(#)03d quote types.' % \
      {'language': "Python", "#": 2}
Python has 002 quote types.

Is there any way to do this in C#? Say for instance:

String.Format("{some_variable}: {some_other_variable}", ...);

Being able to do this using a variable name would be nice, but a dictionary is acceptable too.

UPDATE: I ended up doing something like this post, but it's definitely not pretty. I'll try out John Sheehan's approach, but if anybody has any other suggestions in the meantime, feel free to add them. :)

UPDATE 2: John Sheehan's approach works pretty well. Accepting it.

flag

I'm missing this from Ruby as well. – JesperE Oct 1 '08 at 18:33
I think your example is too simplistic and is leading people to give you unhelpful answers. Maybe using a variable more than once in the string would be more demonstrative. – Wedge Oct 1 '08 at 18:40
Actually, the SPECIFIC confusion is the use of String.Format. That lends itself to answers such as mine, which are not helpful because they're not variable oriented, but are accurate insofar as String.Format is concerned. – John Rudy Oct 1 '08 at 18:47
The call to String.Format is obviously a contrived example. Unless of course you weren't aware that calling String.Format with ellipses isn't possible. The problem was that I didn't put that I wanted the formatting to happen by named parameters rather than position, which has been fiexed. – Jason Baker Oct 1 '08 at 19:02

9 Answers

vote up 15 vote down check

There is no built-in method for handling this.

Here's one method

string myString = "{foo} is {bar} and {yadi} is {yada}".Inject(o);

Here's another

Status.Text = "{UserName} last logged in at {LastLoginDate}".FormatWith(user);

A third improved method partially based on the two above, from Phil Haack

link|flag
vote up 1 vote down

See http://stackoverflow.com/questions/271398#358259

With the linked-to extension you can write this:

var str = "{foo} {bar} {baz}".Format(foo=>"foo", bar=>2, baz=>new object());

and you'll get "foo 2 System.Object".

link|flag
vote up 10 vote down

I have an implementation I just posted to my blog here: http://haacked.com/archive/2009/01/04/fun-with-named-formats-string-parsing-and-edge-cases.aspx

It addresses some issues that these other implementations have with brace escaping. The post has details. It does the DataBinder.Eval thing too, but is still very fast.

link|flag
Nice thanks for sharing Phil! – Josh Jan 6 '09 at 13:53
vote up 5 vote down

The framework itself does not provide a way to do this, but you can take a look at this post by Scott Hanselman. Example usage:

Person p = new Person();  
string foo = p.ToString("{Money:C} {LastName}, {ScottName} {BirthDate}");  
Assert.AreEqual("$3.43 Hanselman, {ScottName} 1/22/1974 12:00:00 AM", foo);

This code by James Newton-King is similar and works with sub-properties and indexes,

string foo = "Top result for {Name} was {Results[0].Name}".FormatWith(student));

James's code relies on System.Web.UI.DataBinder to parse the string and requires referencing System.Web, which some people don't like to do in non-web applications.

EDIT: Oh and they work nicely with anonymous types, if you don't have an object with properties ready for it:

string name = ...;
DateTime date = ...;
string foo = "{Name} - {Birthday}".FormatWith(new { Name = name, Birthday = date });
link|flag
vote up 1 vote down

There doesn't appear to be a way to do this out of the box. Though, it looks feasible to implement your own IFormatProvider that links to an IDictionary for values.

var Stuff = new Dictionary<string, object> {
   { "language", "Python" },
   { "#", 2 }
};
var Formatter = new DictionaryFormatProvider();

// Interpret {0:x} where {0}=IDictionary and "x" is hash key
Console.WriteLine string.Format(Formatter, "{0:language} has {0:#} quote types", Stuff);

Outputs:

Python has 2 quote types

The caveat is that you can't mix FormatProviders, so the fancy text formatting can't be used at the same time.

link|flag
vote up -2 vote down
string language = "Python";
int numquotes = 2;
string output = language + " has "+ numquotes + " language types.";

Edit: What I should have said was, "No, I don't believe what you want to do is supported by C#. This is as close as you are going to get."

link|flag
I'm curious about the down votes. Anybody want to tell me why? – Kevin Oct 1 '08 at 19:00
stackoverflow.com/questions/16432/… – spoulson Oct 1 '08 at 19:04
So the string.format would perform this operation 4/TenThousandths of a second faster If this function is going to get called a ton you might notice that difference. But it at least answers his question instead of just telling him to do it the same way he already said he didn't want to do it. – Kevin Oct 1 '08 at 19:34
I didn't vote you down, but I wouldn't implement this mainly because well, I find doing lots of string concatenations ugly. But that's my personal view. – Jason Baker Oct 1 '08 at 22:45
vote up 2 vote down

I doubt this will be possible. The first thing that comes to mind is how are you going to get access to local variable names?

There might be some clever way using LINQ and Lambda expressions to do this however.

link|flag
@leppie: +1 if you can give me some LINQ+Lambda to do that ;D (ok +1 for having a relevant answer) – sixlettervariables Oct 1 '08 at 18:34
I would love to see it too! Maybe I will take that challenge! – leppie Oct 1 '08 at 18:35
I figured it would be impossible to do with variable names, but put that in there in case I was wrong. :) There's not any way to do this with a dictionary either? – Jason Baker Oct 1 '08 at 18:36
community.bartdesmet.net/blogs/bart/… – leppie Oct 1 '08 at 18:39
I tried, and got a little somewhere, but I deemed it too ugly and difficult to use. It would have looked like: string s = format(f => f("{hello} {world}", hello, world)); – leppie Oct 2 '08 at 6:52
vote up -2 vote down
String.Format(”Error {0} occurred.”, nError);

Documentation with example is here.

If you want a String replacement for {name} you can always use

"Error {myError} occured".Replace("{myError}","This is my error!!!");
link|flag
Sorry, should have been more clear. I know how to do this by position. I was curious if there was any way to do it by name. – Jason Baker Oct 1 '08 at 18:35
You will need to do String.Replace() and replace your {name} by the value you want. – Daok Oct 1 '08 at 18:36
I thought you made it clear. Here I sit wondering why people stating the obvious is getting upvoted... – leppie Oct 1 '08 at 18:36
Do a simple .Replace if you want a String instead of a number. Calm down leppie. – Daok Oct 1 '08 at 18:38
vote up 3 vote down

I think the closest you'll get is an indexed format:

String.Format("{0} has {1} quote types.", "C#", "1");

There's also String.Replace(), if you're willing to do it in multiple steps and take it on faith that you won't find your 'variables' anywhere else in the string:

string MyString = "{language} has {n} quote types.";
MyString = MyString.Replace("{language}", "C#").Replace("{n}", "1");

Expanding this to use a List:

List<KeyValuePair<string, string>> replacements = GetFormatDictionary();  
foreach (KeyValuePair<string, string> item in replacements)
{
    MyString = MyString.Replace(item.Key, item.Value);
}

You could do that with a Dictionary<string, string> too by iterating it's .Keys collections, but by using a List<KeyValuePair<string, string>> we can take advantage of the List's .ForEach() method and condense it back to a one-liner:

replacements.ForEach(delegate(KeyValuePair<string,string>) item) { MyString = MyString.Replace(item.Key, item.Value);});

A lambda would be even simpler, but I'm still on .Net 2.0. Also note that the .Replace() performance isn't stellar when used iteratively, since strings in .Net are immutable. Also, this requires the MyString variable be defined in such a way that it's accessible to the delegate, so it's not perfect yet.

link|flag
lol exactly what I said in the comment under my post. – Daok Oct 1 '08 at 18:41
Well, that's not the prettiest solution, but it's what I'm going with for now. The only thing I did differently was use a StringBuilder instead of a string so that I don't keep making new strings. – Jason Baker Oct 1 '08 at 22:48

Your Answer

Get an OpenID
or

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