Answers for "javascript split string by comma and whitespace"

0

split by whitespace javascript

var text = "hoi how     are          you";
var arr = text.split(/\s+/);
Posted by: Guest on May-24-2021
6

javascript split string into array by comma and space

input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma
Posted by: Guest on June-11-2020

Code answers related to "javascript split string by comma and whitespace"

Code answers related to "Javascript"

Browse Popular Code Answers by Language