All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bio.ferlab.datalake.spark3.transformation.RegexReplace.scala Maven / Gradle / Ivy

There is a newer version: 14.8.0
Show newest version
package bio.ferlab.datalake.spark3.transformation

import org.apache.spark.sql.DataFrame
import org.apache.spark.sql.functions.{col, regexp_replace}

case class RegexReplace(sourcefield: String, destinationfield: String, pattern: String, replacement: String) extends Transformation {
  override def transform: DataFrame => DataFrame = { df =>
    df.withColumn(destinationfield, regexp_replace(col(sourcefield), pattern, replacement))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy