Functions.SubstringIndex(Column, String, Int32) 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.
Returns the substring from the given string before count
occurrences of
the given delimiter.
public static Microsoft.Spark.Sql.Column SubstringIndex(Microsoft.Spark.Sql.Column column, string delimiter, int count);
static member SubstringIndex : Microsoft.Spark.Sql.Column * string * int -> Microsoft.Spark.Sql.Column
Public Shared Function SubstringIndex (column As Column, delimiter As String, count As Integer) As Column
Parameters
- column
- Column
Column to apply
- delimiter
- String
Delimiter to find
- count
- Int32
Number of occurrences of delimiter
Returns
Column object