Solve using REGEXP_REPLACE and REGEXP_EXTRACT in PySpark

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

ความคิดเห็น • 2

  • @MaheshNuvvula-u8d
    @MaheshNuvvula-u8d 6 หลายเดือนก่อน +1

    from pyspark.sql.functions import *
    df1 = df.withColumn("FirstName", regexp_extract(col("Name"), r"(\w+)-? ?(\w+)", 1))\
    .withColumn("LastName",regexp_extract(col("Name"),r"(\w+)-? ?(\w+)", 2))
    df1.show()
    Can we write like this?