Functions.Rtrim 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.
Overloads
Rtrim(Column) |
Trim the spaces from right end for the specified string value. |
Rtrim(Column, String) |
Trim the specified character string from right end for the given string column. |
Rtrim(Column)
Trim the spaces from right end for the specified string value.
public static Microsoft.Spark.Sql.Column Rtrim(Microsoft.Spark.Sql.Column column);
static member Rtrim : Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Rtrim (column As Column) As Column
Parameters
- column
- Column
Column to apply
Returns
Column object
Applies to
Rtrim(Column, String)
Trim the specified character string from right end for the given string column.
public static Microsoft.Spark.Sql.Column Rtrim(Microsoft.Spark.Sql.Column column, string trimString);
static member Rtrim : Microsoft.Spark.Sql.Column * string -> Microsoft.Spark.Sql.Column
Public Shared Function Rtrim (column As Column, trimString As String) As Column
Parameters
- column
- Column
Column to apply
- trimString
- String
String to trim
Returns
Column object