1//split into array of strings.
2var str = "Well, how, are , we , doing, today";
3var res = str.split(",");
1var myString = "An,array,in,a,string,separated,by,a,comma";
2var myArray = myString.split(",");
3/*
4*
5* myArray :
6* ['An', 'array', 'in', 'a', 'string', 'separated', 'by', 'a', 'comma']
7*
8*/
1const str = 'Hello!';
2
3console.log(Array.from(str)); // ["H", "e", "l", "l", "o", "!"]
1// Split string into an array of strings
2const path = "/usr/home/chucknorris"
3let result = path.split("/")
4console.log(result)
5// result
6// ["", "usr", "home", "chucknorris"]
7let username = result[3]
8console.log(username)
9// username
10// "chucknorris"
1var myString = 'no,u';
2var MyArray = myString.split(',');//splits the text up in chunks
3
1var myString = "Hello World!";
2
3// splitWords is an array
4// [Hello,World!]
5var splitWords = myString.split(" ");
6
7// e.g. you can use it as an index or remove a specific word:
8var hello = splitWords[splitWords.indexOf("Hello")];