I want in a good performance way (I hope) replace a named parameter in my string to a named parameter from code, example, my string:

"Hi {name}, do you like milk?"

How could I replace the {name} by code, Regular expressions? To expensive? Which way do you recommend?

How do they in example NHibernates HQL to replace :my_param to the user defined value? Or in ASP.NET (MVC) Routing that I like better, "{controller}/{action}", new { controller = "Hello", ... }?

link|improve this question
feedback

11 Answers

up vote 16 down vote accepted

Have you confirmed that regular expressions are too expensive?

The cost of regular expressions is greatly exaggerated. For such a simple pattern performance will be quite good, probably only slightly less good than direct search-and-replace, in fact. Also, have you experimented with the Compiled flag when constructing the regular expression?

That said, can't you just use the simplest way, i.e. Replace?

string varname = "name";
string pattern = "{" + varname + "}";
Console.WriteLine("Hi {name}".Replace(pattern, "Mike"));
link|improve this answer
1  
+1 for doing things the simple way :) – Jon Skeet Dec 18 '08 at 21:34
(Although you mean Replace(pattern, "Mike")) – Jon Skeet Dec 18 '08 at 21:35
2  
@Jon: Thanks. Why use a compiler when you've got a Jon? ;-) – Konrad Rudolph Dec 18 '08 at 22:18
feedback

Regex is certainly a viable option, especially with a MatchEvaluator:

    Regex re = new Regex(@"\{(\w*?)\}", RegexOptions.Compiled); // store this...

    string input = "Hi {name}, do you like {food}?";

    Dictionary<string, string> vals = new Dictionary<string, string>();
    vals.Add("name", "Fred");
    vals.Add("food", "milk");

    string q = re.Replace(input, delegate(Match match)
    {
        string key = match.Groups[1].Value;
        return vals[key];
    });
link|improve this answer
Damn... How'd you get that 18 minutes before me? – James Curran Dec 18 '08 at 21:47
If you're on .NET 3.5, you can kill the delegate keyword. delegate(Match match) can be match => – steve_c Dec 18 '08 at 21:49
@scalvert - to be exact, that is C# 3.0, not .NET 3.5; it would work targetting .NET 2.0 with C# 3.0, too. – Marc Gravell Dec 18 '08 at 22:28
feedback

How about

stringVar = "Hello, {0}. How are you doing?";
arg1 = "John";    // or args[0]
String.Format(stringVar, arg1)

You can even have multiple args, just increment the {x} and add another parameter to the Format() method. Not sure the different but both "string" and "String" have this method.

link|improve this answer
feedback

Now if you have you replacements in a dictionary, like this:

	var  replacements = new Dictionary<string, string>();
	replacements["name"] = "Mike";
	replacements["age"]= "20";

then the Regex becomes quite simple:

Regex regex = new Regex(@"\{(?<key>\w+)\}");
    string formattext = "{name} is {age} years old";
	string newStr = regex.Replace(formattext, 
            match=>replacements[match.Groups[1].Captures[0].Value]);
link|improve this answer
+1 for brevity - of all the contributed solutions, this is my personal favorite :-) – mindplay.dk Mar 31 '11 at 12:16
feedback

After thinking about this, I realized what I actually wished for, was that String.Format() would take an IDictionary as argument, and that templates could be written using names instead of indexes.

For string substitutions with lots of possible keys/values, the index numbers result in illegible string templates - and in some cases, you may not even know which items are going to have what number, so I came up with the following extension:

https://gist.github.com/896724

Basically this lets you use string templates with names instead of numbers, and a dictionary instead of an array, and lets you have all the other good features of String.Format(), allowing the use of a custom IFormatProvider, if needed, and allowing the use of all the usual formatting syntax - precision, length, etc.

The example provided in the reference material for String.Format is a great example of how templates with many numbered items become completely illegible - porting that example to use this new extension method, you get something like this:

var replacements = new Dictionary<String, object>()
                       {
                           { "date1", new DateTime(2009, 7, 1) },
                           { "hiTime", new TimeSpan(14, 17, 32) },
                           { "hiTemp", 62.1m },
                           { "loTime", new TimeSpan(3, 16, 10) },
                           { "loTemp", 54.8m }
                       };

var template =
    "Temperature on {date1:d}:\n{hiTime,11}: {hiTemp} degrees (hi)\n{loTime,11}: {loTemp} degrees (lo)";

var result = template.Subtitute(replacements);

As someone pointed out, if what you're writing needs to be highly optimized, don't use something like this - if you have to format millions of strings this way, in a loop, the memory and performance overhead could be significant.

On the other hand, if you're concerned about writing legible, maintainable code - and if you're doing, say, a bunch of database operations, in the grand scheme of things, this function will not add any significant overhead.

...

For convenience, I did attempt to add a method that would accept an anonymous object instead of a dictionary:

public static String Substitute(this String template, object obj)
{
    return Substitute(
        template,
        obj.GetType().GetProperties().ToDictionary(p => p.Name, p => p.GetValue(obj, null))
    );
}

For some reason, this doesn't work - passing an anonymous object like new { name: "value" } to that extension method gives a compile-time error message saying the best match was the IDictionary version of that method. Not sure how to fix that. (anyone?)

link|improve this answer
feedback

A compiled regex might do the trick , especially if there are many tokens to be replaced. If there are just a handful of them and performance is key, I would simply find the token by index and replace using string functions. Believe it or not this will be faster than a regex.

link|improve this answer
feedback

I wanted peoples perspective first how they thought to solve this so I haven't tried with anything yet.

But if you can recommend regular expressions, I try to run with it and hope it's good enough.

Thanks!

If you have any suggestions with no regular expressions (or a simple replace), I want to known that to.

link|improve this answer
feedback

I haven't tested anything but to use Regular Expressions or the simple Replace method in a large string/text, which seems to be the fastest?

link|improve this answer
feedback

Try using StringTemplate. It's much more powerful than that, but it does the job flawless.

link|improve this answer
feedback

or try this with Linq if you have all your replace values stored in a Dictionary obj.

For example:

Dictionary<string,string> dict = new Dictionary<string,string>();
dict.add("replace1","newVal1");
dict.add("replace2","newVal2");
dict.add("replace3","newVal3");

var newstr = dict.Aggregate(str, (current, value) => current.Replace(value.Key, value.Value));

dict is your search-replace pairs defined Dictionary object. str is your string which you need to do some replacements with.

link|improve this answer
feedback

I would go for the mindplay.dk solution... Works quite well.

And, with a slight modification, it supports templates-of-templates, like "Hi {name}, do you like {0}?", replacing {name} but retaining {0}:

In the given source (https://gist.github.com/896724), replace as follows:

        var format = Pattern.Replace(
            template,
            match =>
                {
                    var name = match.Groups[1].Captures[0].Value;

                    if (!int.TryParse(name, out parsedInt))
                    {
                        if (!map.ContainsKey(name))
                        {
                            map[name] = map.Count;
                            list.Add(dictionary.ContainsKey(name) ? dictionary[name] : null);
                        }

                        return "{" + map[name] + match.Groups[2].Captures[0].Value + "}";
                    }
                    else return "{{" + name + "}}";
                }
            );

Furthermore, it supports a length ({name,30}) as well as a formatspecifier, or a combination of both.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown