Answers for "split string into array"

PHP
27

php explode

$colors  = "red,blue,green,orange";
$colorsArray = explode(",", $colors);
Posted by: Guest on June-14-2019
1

how to split string into array javascript

var str = 'foobar'; 
var arr = str.split(''); 
console.log(arr); // ["f", "o", "o", "b", "a", "r"]
Posted by: Guest on November-08-2021
33

javascript explode

//split into array of strings.
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Posted by: Guest on June-14-2019
47

string split javascript

var myString = "An,array,in,a,string,separated,by,a,comma";
var myArray = myString.split(",");
/* 
*
*  myArray :
*  ['An', 'array', 'in', 'a', 'string', 'separated', 'by', 'a', 'comma']
*
*/
Posted by: Guest on October-27-2020
14

js string to array

var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
Posted by: Guest on April-08-2020
4

js string to array

str = 'How are you doing today?';
console.log(str.split(' '));

>> (5) ["How", "are", "you", "doing", "today?"]
Posted by: Guest on October-22-2020

Code answers related to "split string into array"

Browse Popular Code Answers by Language