Functions.Translate(Column, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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