...
Code Block | ||
---|---|---|
| ||
"title".toUpperCase(); |
Compliant Solution (Explicit Locale)
This compliant solution explicitly sets the locale to English to avoid unexpected results.
Code Block | ||
---|---|---|
| ||
"title".toUpperCase(Locale.ENGLISH);
|
This guideline also applies to the String.equalsIgnoreCase()
method.
Compliant Solution (Default Locale)
This compliant solution sets the default locale to English before proceeding with string operations.
Code Block | ||
---|---|---|
| ||
Locale.setDefault( Locale.ENGLISH);
"title".toUpperCase();
|
This guideline also applies to the String.equalsIgnoreCase()
method.
...