I didn\'t get an optimized regex that split me a String basing into the first white space occurrence:
var str=\"72 tocirah sneab\";
I need
In ES6 you can also
let [first, ...second] = str.split(" ") second = second.join(" ")