window.ENTITIES={'/api/snippets/javascript/js%20split%20string%20to%20array':[{"result":true,"message":null,"batch":{"type":"javascript","name":"js split string to array","items":[{"id":"pqnK9j","type":"javascript","name":"js split string to array","content":"var text = 'This is some text...';\nvar array = text.split(' '); // space character separator used\n\nconsole.log(array); // ['This','is','some','text...']","source":"https://dirask.com/posts/JavaScript-how-to-split-string-ZDNZKD","author":{"id":"20wl2D","name":"Brandy-Mccabe","avatar":"1629030393771__20wl2D__w40px_h40px.png","points":754,"role":"BASIC"},"creationTime":1634575142000,"updateTime":null,"removalTime":null},{"id":"DW9azj","type":"javascript","name":"js split string to array","content":"var text = 'This is some text...';\nvar array = text.split('is'); // this character sequence separates string\n\nconsole.log(array); // ['Th',' ',' some text...']","source":"https://dirask.com/posts/JavaScript-how-to-split-string-ZDNZKD","author":{"id":"Eagdqo","name":"Palus-Bear","avatar":"1631264467967__Eagdqo__w40px_h40px.jpg","points":1016,"role":"BASIC"},"creationTime":1634575143000,"updateTime":null,"removalTime":null},{"id":"DnnLED","type":"javascript","name":"js split string to array","content":"var text = 'This is some text...';\nvar array = text.split(''); // empty separator used\n\nconsole.log(array); // ['T','h','i','s',' ','i','s',' ','s','o','m','e',' ','t','e','x','t','.','.','.']","source":"https://dirask.com/posts/JavaScript-how-to-split-string-ZDNZKD","author":{"id":"E0kjgo","name":"Dragontry","avatar":"1629030398251__E0kjgo__w40px_h40px.png","points":731,"role":"BASIC"},"creationTime":1634575145000,"updateTime":null,"removalTime":null},{"id":"p2PAO1","type":"javascript","name":"js split string to array","content":"var text = 'This is some text...';\nvar array = text.split(' ', 2); // maximum result array size will be 2\n\nconsole.log(array); // ['This','is']","source":"https://dirask.com/posts/JavaScript-how-to-split-string-ZDNZKD","author":{"id":"9oAZR0","name":"Aran-Busby","avatar":"1629131689052__9oAZR0__w40px_h40px.jpg","points":592,"role":"BASIC"},"creationTime":1634575146000,"updateTime":null,"removalTime":null},{"id":"Ddw721","type":"javascript","name":"js split string to array","content":"var text = 'This is some text...';\nvar array = text.split(/\\b/); // begin or end of word separates string\n\nconsole.log(array); // ['This',' ','is',' ','some',' ','text','...']","source":"https://dirask.com/posts/JavaScript-how-to-split-string-ZDNZKD","author":{"id":"YoWmgD","name":"chelsea","avatar":"1629030395354__YoWmgD__w40px_h40px.png","points":806,"role":"BASIC"},"creationTime":1634575148000,"updateTime":null,"removalTime":null},{"id":"jEMboj","type":"javascript","name":"js split string to array","content":"var text = 'This is some text...';\nvar array = text.split(/\\b/, 2); // maximum result array size will be 2\n\nconsole.log(array); // ['This',' ']","source":"https://dirask.com/posts/JavaScript-how-to-split-string-ZDNZKD","author":{"id":"b0Z2y0","name":"a_horse","avatar":"1629125843498__b0Z2y0__w40px_h40px.jpg","points":538,"role":"BASIC"},"creationTime":1634575150000,"updateTime":null,"removalTime":null}]}}]};