“Agregue Char en índice específico STOWNG JavaScript” Código de respuesta

Agregue Char en índice específico STOWNG JavaScript

int j = 123456;
String x = Integer.toString(j);
x = x.substring(0, 4) + "." + x.substring(4, x.length);

//output : 1234.56
Kamran Taghaddos

Agregue Char en índice específico STOWNG JavaScript


if (!String.prototype.splice) {
    /**
     * {JSDoc}
     *
     * The splice() method changes the content of a string by removing a range of
     * characters and/or adding new characters.
     *
     * @this {String}
     * @param {number} start Index at which to start changing the string.
     * @param {number} delCount An integer indicating the number of old chars to remove.
     * @param {string} newSubStr The String that is spliced in.
     * @return {string} A new string with the spliced substring.
     */
    String.prototype.splice = function(start, delCount, newSubStr) {
        return this.slice(0, start) + newSubStr + this.slice(start + Math.abs(delCount));
    };
}

Yawning Yak

Respuestas similares a “Agregue Char en índice específico STOWNG JavaScript”

Preguntas similares a “Agregue Char en índice específico STOWNG JavaScript”

Más respuestas relacionadas con “Agregue Char en índice específico STOWNG JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código