While trying to see if I can use string functions toUpper and toLower with a different Locale than the system locale. I could not find a way to pass the locale I want to the functions. Is there a way?
For example, in Turkish Locale, input data: "Nuri", toUpper data should be "NURİ" but if the machine locale is EN than the functions returns "NURI" and of course the rules don't get executed correctly.
In java, they have the possibility to pass in the locale for the toUpper and toLower methods.
Thank you for your reply. Actually, I built the operator where it takes the locale as a parameter to make it independent of the locale for the JVM/System.
It implements ICcStringExtension and expects a locale string like 'tr'.
Christopher S. Hogan
Principal Systems Engineer |
||||
PHONE 646-201-4123 MOBILE 646-243-4282 www.progress.com |
Flag this post as spam/abuse.
Thank you for your reply. Actually, I built the operator where it takes the locale as a parameter to make it independent of the locale for the JVM/System.
It implements ICcStringExtension and expects a locale string like 'tr'.