dividido por JavaScript de espaço em branco

var text = "hoi how     are          you";
var arr = text.split(/\s+/);
Tough Tarsier