“Usuń literę z środka strun Javasdript” Kod odpowiedzi

Zelazuj Char Betwen Indeks JS

// First find the substring of the string to replace, then replace the first occurrence of that string with the empty string.

S = S.replace(S.substring(bindex, eindex), "");

//Another way is to convert the string to an array, splice out the unwanted part and convert to string again.

var result = S.split("");
result.splice(bindex, eindex - bindex);
S = result.join("");
Fylls

Usuń literę z środka strun Javasdript

var string = "progress report tempate elementary school"
string = string.split(" ");
for (let i = 0; i < string.length ; i++) {

    for (let j = 0; j < string[i].length-1; j++) {
        if (string[i][j] === string[i][j+1]) {
            dgrg = string[i].split("").splice(j,j+1).join("")
            console.log(dgrg);
        }

    }



}
console.log(string);
Thoughtless Turtle

Odpowiedzi podobne do “Usuń literę z środka strun Javasdript”

Pytania podobne do “Usuń literę z środka strun Javasdript”

Więcej pokrewnych odpowiedzi na “Usuń literę z środka strun Javasdript” w Java

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

Przeglądaj inne języki kodu