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
You can also use .replace to only replace the first occurrence,
str = str.replace(' ','');
Leaving out the /g.
DEMO