HomeLanguagesJavascriptLodash _.split() Method

Lodash _.split() Method

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

Syntax:

_.split( string, separator, limit )

Parameters: This method accepts three parameters as mentioned above and described below:

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

Return Value: This method returns an array.

Example 1:

Javascript




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


Output:

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

Example 2: The array limited to size of 1.

Javascript




// Defining Lodash variable 
const _ = require('lodash'); 
  
var 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.

RELATED ARTICLES

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6923 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12150 POSTS0 COMMENTS
Shaida Kate Naidoo
7060 POSTS0 COMMENTS
Ted Musemwa
7302 POSTS0 COMMENTS
Thapelo Manthata
7017 POSTS0 COMMENTS
Umr Jansen
7006 POSTS0 COMMENTS