pyspark.sql.functions.trim#
- pyspark.sql.functions.trim(col)[source]#
Trim the spaces from both ends for the specified string column.
New in version 1.5.0.
Changed in version 3.4.0: Supports Spark Connect.
Examples
>>> df = spark.createDataFrame([" Spark", "Spark ", " Spark"], "STRING") >>> df.select(trim("value").alias("r")).withColumn("length", length("r")).show() +-----+------+ | r|length| +-----+------+ |Spark| 5| |Spark| 5| |Spark| 5| +-----+------+