The INITCAP function in PLSQl is used for setting the first character in each word to uppercase and the rest to lowercase.
Words are delimited by white space or characters that are not alphanumeric.
The INITCAP function in PLSQL can accept char can of any of the datatypes such as CHAR, VARCHAR2, NCHAR, or NVARCHAR2. The value returned by the INITCAP function is of the same datatype as char. The database sets the case of the initial characters based on the binary mapping defined for the underlying character set.
Syntax:
INITCAP(string)
Parameters Used:
string:It is used to specify the string whose first character in each word will be converted to uppercase and all remaining characters converted to lowercase.
Return Value:
The INITCAP function in PLSQL returns a string value.
Supported Versions of Oracle/PLSQL:
- Oracle 12c
- Oracle 11g
- Oracle 10g
- Oracle 9i
- Oracle 8i
Example-1:
DECLARE
Test_String string(20) := 'geeksforgeeks';
BEGIN
dbms_output.put_line(INITCAP(Test_String));
END;
Output:
Geeksforgeeks
Example-2:
DECLARE
Test_String string(40) := 'Hello, welcome to geeksforgeeks.';
BEGIN
dbms_output.put_line(INITCAP(Test_String));
END;
Output:
Hello, Welcome To Geeksforgeeks.
Recommended Posts:
- PLSQL | LOG Function
- PLSQL | INSTR Function
- PLSQL | INSTRB Function
- PLSQL | LENGTH2 Function
- PLSQL | SOUNDEX Function
- PLSQL | ASCII Function
- PLSQL | CONCAT Function
- PLSQL | COMPOSE Function
- PLSQL | CHR Function
- PLSQL | ASCIISTR Function
- PLSQL | CONVERT Function
- PLSQL | DECOMPOSE Function
- PLSQL | DUMP Function
- PLSQL | LENGTHC Function
- PLSQL | LENGTHB Function
- PLSQL | LENGTH4 Function
- PLSQL | LENGTH Function
- PLSQL | LPAD Function
- PLSQL | INSTRC Function
- PLSQL | LTRIM Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

