C# Named parameters to a string that replace to the parameter values - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:31:59Zhttp://stackoverflow.com/feeds/question/379328http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values1C# Named parameters to a string that replace to the parameter valuesmike2008-12-18T21:20:58Z2009-03-29T01:15:14Z
<p>Hi,</p>
<p>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:</p>
<pre><code>"Hi {name}, do you like milk?"
</code></pre>
<p>How could I replace the {name} by code, Regular expressions? To expensive? Which way do you recommend?</p>
<p>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", ... }?</p>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/379341#3793419Answer by Konrad Rudolph for C# Named parameters to a string that replace to the parameter valuesKonrad Rudolph2008-12-18T21:25:12Z2008-12-18T22:16:49Z<p>Have you confirmed that regular expressions are too expensive?</p>
<p>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 <code>Compiled</code> flag when constructing the regular expression?</p>
<p>That said, can't you just use the simplest way, i.e. <code>Replace</code>?</p>
<pre><code>string varname = "name";
string pattern = "{" + varname + "}";
Console.WriteLine("Hi {name}".Replace(pattern, "Mike"));
</code></pre>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/379344#3793440Answer by Andrew Hare for C# Named parameters to a string that replace to the parameter valuesAndrew Hare2008-12-18T21:26:06Z2008-12-18T21:26:06Z<p>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.</p>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/379347#3793473Answer by Marc Gravell for C# Named parameters to a string that replace to the parameter valuesMarc Gravell2008-12-18T21:26:50Z2008-12-18T21:26:50Z<p>Regex is certainly a viable option, especially with a <code>MatchEvaluator</code>:</p>
<pre><code> 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];
});
</code></pre>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/379391#3793910Answer by mike for C# Named parameters to a string that replace to the parameter valuesmike2008-12-18T21:39:47Z2008-12-18T21:39:47Z<p>Hi,</p>
<p>I wanted peoples perspective first how they thought to solve this so I haven't tried with anything yet.</p>
<p>But if you can recommend regular expressions, I try to run with it and hope it's good enough.</p>
<p>Thanks!</p>
<p>If you have any suggestions with no regular expressions (or a simple replace), I want to known that to.</p>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/379413#3794130Answer by James Curran for C# Named parameters to a string that replace to the parameter valuesJames Curran2008-12-18T21:45:19Z2008-12-18T21:45:19Z<p>Now if you have you replacements in a dictionary, like this:</p>
<pre><code> var replacements = new Dictionary<string, string>();
replacements["name"] = "Mike";
replacements["age"]= "20";
</code></pre>
<p>then the Regex becomes quite simple:</p>
<pre><code>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]);
</code></pre>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/379451#3794510Answer by mike for C# Named parameters to a string that replace to the parameter valuesmike2008-12-18T21:55:43Z2008-12-18T21:55:43Z<p>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?</p>
http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values/693924#6939240Answer by Felipe for C# Named parameters to a string that replace to the parameter valuesFelipe2009-03-29T01:15:14Z2009-03-29T01:15:14Z<p>Try using StringTemplate. It's much more powerful than that, but it does the job flawless.</p>