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