pyspark.sql.functions.initcap#

pyspark.sql.functions.initcap(col)[source]#

Translate the first letter of each word to upper case in the sentence.

New in version 1.5.0.

Changed in version 3.4.0: Supports Spark Connect.

Parameters
colColumn or column name

target column to work on.

Returns
Column

string with all first letters are uppercase in each word.

Examples

>>> import pyspark.sql.functions as sf
>>> df = spark.createDataFrame([('ab cd',)], ['a'])
>>> df.select("*", sf.initcap("a")).show()
+-----+----------+
|    a|initcap(a)|
+-----+----------+
|ab cd|     Ab Cd|
+-----+----------+