JavaScript Substitua o espaço por menos
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');
VasteMonde
// replaces space with '-'
str = str.replace(/ /g, "-");
// or
str = str.split(' ').join('-');