prég_replace javascript

var text = 'test   test   test test',
    fixed;
fixed = text.replace(/\s+/g, '-');
Disgusted Dogfish