Open In App

Lodash _.split() Method

Improve
Improve
Like Article
Like
Save
Share
Report

Lodash _.split() method splits the given string by the given separator and up to the given limit length.

Syntax:

_.split(string, separator, limit);

Parameters:

  • string: The string to split.
  • separator: The separator by which the string is to be split.
  • limit: The length to truncate results.

Return Value:

This method returns an array.

Example 1: In this example, we are splitting the given array by ‘-‘ by the use of the _.split() method.

Javascript




// Defining Lodash variable
const _ = require('lodash');
 
let str = "Geeks-for-Geeks";
 
// Using _.replace() method
console.log(_.split(str, '-'))


Output:

[ 'Geeks', 'for', 'Geeks' ]

Example 2: In this example, we are splitting the given array by ‘-‘ with limit of 2 by the use of the _.split() method.

Javascript




// Defining Lodash variable
const _ = require('lodash');
 
let str = "Geeks-for-Geeks";
 
// Using _.replace() method
console.log(_.split(str, '-', 1))


Output:

[ 'Geeks' ]

Note: This will not work in normal JavaScript because it requires the lodash library to be installed and can be installed using npm install lodash.


Last Updated : 25 Oct, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads