polars.Series.str.split# Series.str.split(by: IntoExpr, *, inclusive: bool = False) → Series[source]# Split the string by a substring. Parameters: bySubstring to split by. inclusiveIf True, include the split character/string in the results. Returns: SeriesSeries of data type List(Utf8).