Split
Split
lets you clean and explore your data by splitting a column into multiple new columns. You can split a column based on a delimiter or at a certain position, such as the second character or the third number in the column.
Format
Split has two formats:
Split <column> at the position <position> (calling the output columns <names>)
Split <column> by the delimiter <delimiter> (calling the output columns <names>)
Parameters
Split uses the following parameters:
Column
(required). The column you want to split.Position
(required). The position at which you want to split the value. For example, if you want to split the value at the first character or number, enter 1.Delimiter
(required). The delimiter you want to use to split the values in the column. This can be a number, letter, or symbol. A space (“ “) is the default delimiter.Names
(optional). If you want to give the resulting columns custom names, enter the names as a comma-separated list.