“JavaScript Zastąp całą przestrzeń” Kod odpowiedzi

JavaScript Zastąp całą przestrzeń

// replaces spaces with '_'
str = str.replace(/ /g, "_");
// or
str = str.split(' ').join('_');
VasteMonde

JS zastępuje wszystkie przestrzenie

var replaced = str.replace(/ /g, '_');
Crowded Caribou

JavaScript Zastąp wszystkie przestrzenie

var string = "Javascript is fun";
var newString = string.replace(" ", "_");
console.log(newString); // Javascript_is_fun
Programming Is Fun

JavaScript Zastąp wszystkie przestrzenie

var str = 'a b c';
var replaced = str.split(' ').join('_');
Wicked Wolf

JavaScript Zastąp całą przestrzeń

String = String.replace(/ /g, "_");
String = String.split(' ').join('_');
Undefined

Odpowiedzi podobne do “JavaScript Zastąp całą przestrzeń”

Pytania podobne do “JavaScript Zastąp całą przestrzeń”

Więcej pokrewnych odpowiedzi na “JavaScript Zastąp całą przestrzeń” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu