JavaScript String split() Method
JavaScript String split() Method is used to split the given string into an array of strings by separating it into substrings using a specified separator provided in the argument.
Syntax:
str.split(separator, limit)
- separator: It is used to specify the character, or the regular expression, to use for splitting the string. If the separator is unspecified then the entire string becomes one single array element. The same also happens when the separator is not present in the string. If the separator is an empty string (“”) then every character of the string is separated.
- limit: Defines the upper limit on the number of splits to be found in the given string. If the string remains unchecked after the limit is reached then it is not reported in the array.
Return value: This function returns an array of strings that is formed after splitting the given string at each point where the separator occurs.
Below is an example of the String split() Method.
Example 1:
JavaScript
// JavaScript Program to illustrate split() function function func() { //Original string let str = 'Geeks for Geeks' let array = str.split( "for" ); console.log(array); } func(); |
Output:
Geeks , Geeks
Examples of the above function are provided below:
Example 2: In this example, the function split() creates an array of strings by splitting str wherever ” ” occurs.
JavaScript
// JavaScript Program to illustrate split() function function func() { //Original string let str = 'It iS a 5r&e@@t Day.' let array = str.split( " " ); console.log(array); } func(); |
Output:
[It,iS,a,5r&e@@t,Day.]
Example 3: In this example, the function split() creates an array of strings by splitting str wherever ” ” occurs. The second argument 2 limits the number of such splits to only 2.
JavaScript
// JavaScript Program to illustrate split() function function func() { // Original string let str = 'It iS a 5r&e@@t Day.' // Splitting up to 2 terms let array = str.split( " " , 2); console.log(array); } func(); |
Output:
[It,iS]
We have a complete list of Javascript string methods, to check those please go through this Javascript String Complete reference article.
Supported Browsers:
- Chrome 1 and above
- Edge 12 and above
- Firefox 1 and above
- Internet Explorer 4 and above
- Opera 3 and above
- Safari 1 and above
JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by following this JavaScript Tutorial and JavaScript Examples.
We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.
Please Login to comment...