Many ICU functions take a char * representing the locale as a parameter. If I statically set this to "ko_KR", for example, then it does indeed operate in a locale-sensitive manner.

However, I want to determine the current locale based on system settings for time formatting. As far as I understand, most systems have a locale setting for displaying numbers, time, money, etc and these could all vary. Any ideas about how to do this would be greatly appreciated!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

uloc_getDefault() will return the overall default locale that ICU detected from the underlying system. The categories you mentioned don't cleanly map across all operating systems.

link|improve this answer
feedback

Seems this can be done with the locale.h functions

char * loc;
loc = setlocale(LC_TIME, "");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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