Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When formatting a string as opposed to a DateTime, does the culture ever come into play? Are there any examples of strings that would be formatted differently with two different cultures?

share|improve this question

4 Answers

up vote 3 down vote accepted

I don't believe so in the current Framework. But if Microsoft ever implements this suggestion on the Connect feedback site, it includes a suggestion to have a format specifier to force upper case:

String.Format("{0:U}", "SomeString") => "SOMESTRING"

Such formatting would be culture-specific.

share|improve this answer
The thing you mention is already there. Have a look TextInfo – Waqas Raja May 25 '11 at 17:05
@Waqas: But it isn't part of String.Format. – vcsjones May 25 '11 at 17:08

If you are displaying a string that is stored as a resource it will make a difference if you have separate strings for different cultures (you'd use CultureInfo.CurrentUICulture). For example error messages accessed via a ResourceManager.

share|improve this answer

String.Format("{0}", "This string") - which I believe is what you're implying by your question, is not affected by the culture.

share|improve this answer

There are many scenarios when you need culture based formatting.

For example: - Number Format

5.25 in English is written as 5,25 in French

So, if you want to display French formatted number in your program which is in English culture the culture based string format comes into action.

share|improve this answer
1  
um.. he's asking about formatting strings, not numbers. – juharr May 25 '11 at 17:02
1  
@juharr: No, this is right. You format a string to contain a number. The string is the result of the formatting, not necessarily the input. – tylerl May 25 '11 at 17:08
For this question I am talking about only strings as input. – Joe Cartano May 25 '11 at 17:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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