pyspark dataframe 字符串类型的某列如何去除所有的空格字符? 1推荐方式 推荐方式 利用spark dataframe 的 functions 包的regexp_replace 函数即可搞定,示例如下: from pyspark.sql.functions import regexp_replace df = df.withColumn('query', regexp_replace('query', ' ', '')) 上述示例对 dataframe 的 ...