pyspark.sql.functions.regexp_replace

pyspark.sql.functions。 regexp_replace ( str:ColumnOrName,模式:str,更換:str )→pyspark.sql.column.Column

替換所有匹配正則表達式字符串中指定的字符串值與代表。

例子

> > >df=火花createDataFrame(((“100 - 200”),(str的])> > >df選擇(regexp_replace(str的,r“(\ d +)”,“——”)別名(' d '))收集()行(d = '——'))