Should we store format strings in resources? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:11:59Z http://stackoverflow.com/feeds/question/963270 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/963270/should-we-store-format-strings-in-resources 7 Should we store format strings in resources? jpoh 2009-06-08T02:39:58Z 2009-06-08T03:21:07Z <p>For the project that I'm currently on, I have to deliver specially formatted strings to a 3rd party service for processing. And so I'm building up the strings like so:</p> <pre><code>string someString = string.Format("{0}{1}{2}: Some message. Some percentage: {3}%", token1, token2, token3, number); </code></pre> <p>Rather then hardcode the string, I was thinking of moving it into the project resources:</p> <pre><code>string someString = string.Format(Properties.Resources.SomeString, token1, token2, token3, number); </code></pre> <p>The second option is in my opinion, not as readable as the first one i.e. the person reading the code would have to pull up the string resources to work out what the final result should look like.</p> <p>How do I get around this? Is the hardcoded format string a necessary evil in this case?</p> http://stackoverflow.com/questions/963270/should-we-store-format-strings-in-resources/963274#963274 5 Answer by Michael Petrotta for Should we store format strings in resources? Michael Petrotta 2009-06-08T02:43:24Z 2009-06-08T02:43:24Z <p>I do think this is a necessary evil, one I've used frequently. Something smelly that I do, is:</p> <pre><code>// "{0}{1}{2}: Some message. Some percentage: {3}%" string someString = string.Format(Properties.Resources.SomeString ,token1, token2, token3, number); </code></pre> <p>..at least until the code is stable enough that I might be embarrassed having that seen by others.</p> http://stackoverflow.com/questions/963270/should-we-store-format-strings-in-resources/963277#963277 1 Answer by Matthew Flaschen for Should we store format strings in resources? Matthew Flaschen 2009-06-08T02:45:14Z 2009-06-08T02:45:14Z <p>I don't see why including the format string in the program is a bad thing. Unlike traditional undocumented magic numbers, it is quite obvious what it does at first glance. Of course, if you are using the format string in multiple places it should definitely be stored in an appropriate read-only variable to avoid redundancy.</p> <p>I agree that keeping it in the resources is unnecessary indirection here. A possible exception would be if your program needs to be localized, and you are localizing through resource files.</p> http://stackoverflow.com/questions/963270/should-we-store-format-strings-in-resources/963296#963296 2 Answer by Nick Haddad for Should we store format strings in resources? Nick Haddad 2009-06-08T03:01:14Z 2009-06-08T03:01:14Z <p>There are several reasons that you would want to do this, but the only great reason is if you are going to localize your application into another language. </p> <p>If you are using resource strings there are a couple of things to keep in mind.</p> <ol> <li><p>Include format strings whenever possible in the set of resource strings you want localized. This will allow the translator to reorder the position of the formatted items to make them fit better in the context of the translated text.</p></li> <li><p>Avoid having strings in your format tokens that are in your language. It is better to use these for numbers. For instance, the message: <br /><br /> "The value you specified must be between {0} and {1}"</p> <p>is great if {0} and {1} are numbers like 5 and 10. If you are formatting in strings like "five" and "ten" this is going to make localization difficult.</p></li> <li><p>You can get arround the readability problem you are talking about by simply naming your resources well.<br /><br /> string someString = string.Format(Properties.Resources.IntegerRangeError, minValue, maxValue );</p></li> <li><p>Evaluate if you are generating user visible strings at the right abstraction level in your code. In general I tend to group all the user visible strings in the code closest to the user interface as possible. If some low level file I/O code needs to provide errors, it should be doing this with exceptions which you handle in you application and consistent error messages for. This will also consolidate all of your strings that require localization instead of having them peppered throughout your code. </p></li> </ol> http://stackoverflow.com/questions/963270/should-we-store-format-strings-in-resources/963313#963313 1 Answer by Coding Monkey for Should we store format strings in resources? Coding Monkey 2009-06-08T03:10:17Z 2009-06-08T03:10:17Z <p>One thing you can do to help add hard coded strings or even speed up adding strings to a resource file is to use CodeRush Xpress which you can download for free here: <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/" rel="nofollow">http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/</a></p> <p>Once you write your string you can access the CodeRush menu and extract to a resource file in a single step. Very nice.</p>