NLS_INITCAP function v17
NLS_INITCAP
returns <outputstring> TEXT
, with first letter of each word in uppercase and rest of the letters to lowercase.
Where,
inputstring
is of the TEXT data type.
nlsparam
is of the TEXT data type. You can provide nlsparam
in the format 'NLS_SORT=value'
. For example 'NLS_SORT=xdanish'
where xdanish
is treated as the NLS parameter in the NLS config file and according to which the linguistic requirements for case conversion is handled.
The <outputstring>
is of the TEXT data type. The return string is in the same character set as inputstring
.
Examples
This example shows NLS_INITCAP function with default mapping of NLS parameter.
This example shows how to add a new mapping of NLS parameter and a collation value in the NLS config file using edb_nls_cf_insert
function.
This example shows NLS_INITCAP function after adding a new mapping to the NLS config file.
This example shows NLS_INITCAP function for simple input string.
- On this page
- Examples