Functions.SubstringIndex(Column, String, Int32) Method

Definition

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

Applies to