str::column
column(input: String, index: Integer)
column(input: String, index: Integer, divider: String)
Parameter | Type | Description |
---|---|---|
input | String | A string consisting of several columns. |
index | Integer | The index of the column. |
(optional) divider | String | The character sequence that divides the column. Default: "\t" |
Gets a column from a multi-line string.
Returns
(Generator) A list of lines within the specific column.