mkt.databases.utils.create_strsplit_list
- mkt.databases.utils.create_strsplit_list(list_in: list[str], idx_start: int = 0, idx_end: int = 2) list[str][source]
Split list or Series of strings on delim with exception handling.
- Parameters:
list_in (list[str]) – List of strings to split
idx_start (int) – Starting index
idx_end (int) – Ending index
- Returns:
List of concatenated strings split on delim from idx_start:idx_end
- Return type:
list[str]