Functions.Translate(Column, String, String) Method

Definition

Translate any characters that match with the given matchingString in the column by the given replaceString.

public static Microsoft.Spark.Sql.Column Translate (Microsoft.Spark.Sql.Column column, string matchingString, string replaceString);
static member Translate : Microsoft.Spark.Sql.Column * string * string -> Microsoft.Spark.Sql.Column
Public Shared Function Translate (column As Column, matchingString As String, replaceString As String) As Column

Parameters

column
Column

Column to apply

matchingString
String

String to match

replaceString
String

String to replace with

Returns

Column object

Applies to