_.split([string=''], separator, [limit])
Splits string
by separator
.
Note: This method is based on String#split
.
Since
4.0.0
Arguments
-
[string='']
(string): The string to split. -
separator
(RegExp|string): The separator pattern to split by. -
[limit]
(number): The length to truncate results to.
Returns
(Array): Returns the string segments.
Example
_.split('a-b-c', '-', 2); // => ['a', 'b']
Please login to continue.