Hi,
I am trying to do camel case conversion for Turkish string. For this I tried with below scripts
select NLS_INITCAP( 'UIİ') from dual
select INITCAP( 'UIİ') from dual
For both scripts the output is
Uii
But I am expecting below. In turkish lower case of İ is ı
Uiı
Please suggest solution for this.
Thanks,
Sujnan