C# Named parameters to a string that replace to the parameter values - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:31:59Z http://stackoverflow.com/feeds/question/379328 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379328/c-named-parameters-to-a-string-that-replace-to-the-parameter-values 1 C# Named parameters to a string that replace to the parameter values mike 2008-12-18T21:20:58Z 2009-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#379341 9 Answer by Konrad Rudolph for C# Named parameters to a string that replace to the parameter values Konrad Rudolph 2008-12-18T21:25:12Z 2008-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#379344 0 Answer by Andrew Hare for C# Named parameters to a string that replace to the parameter values Andrew Hare 2008-12-18T21:26:06Z 2008-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#379347 3 Answer by Marc Gravell for C# Named parameters to a string that replace to the parameter values Marc Gravell 2008-12-18T21:26:50Z 2008-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&lt;string, string&gt; vals = new Dictionary&lt;string, string&gt;(); 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#379391 0 Answer by mike for C# Named parameters to a string that replace to the parameter values mike 2008-12-18T21:39:47Z 2008-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#379413 0 Answer by James Curran for C# Named parameters to a string that replace to the parameter values James Curran 2008-12-18T21:45:19Z 2008-12-18T21:45:19Z <p>Now if you have you replacements in a dictionary, like this:</p> <pre><code> var replacements = new Dictionary&lt;string, string&gt;(); replacements["name"] = "Mike"; replacements["age"]= "20"; </code></pre> <p>then the Regex becomes quite simple:</p> <pre><code>Regex regex = new Regex(@"\{(?&lt;key&gt;\w+)\}"); string formattext = "{name} is {age} years old"; string newStr = regex.Replace(formattext, match=&gt;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#379451 0 Answer by mike for C# Named parameters to a string that replace to the parameter values mike 2008-12-18T21:55:43Z 2008-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#693924 0 Answer by Felipe for C# Named parameters to a string that replace to the parameter values Felipe 2009-03-29T01:15:14Z 2009-03-29T01:15:14Z <p>Try using StringTemplate. It's much more powerful than that, but it does the job flawless.</p>