“удалить букву из середины струнного javasdript” Ответ

Delate Char Betwen Index 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

удалить букву из середины струнного 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

Ответы похожие на “удалить букву из середины струнного javasdript”

Вопросы похожие на “удалить букву из середины струнного javasdript”

Больше похожих ответов на “удалить букву из середины струнного javasdript” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования