“Tambahkan char di indeks spesifik stirng javascript” Kode Jawaban

Tambahkan char di indeks spesifik stirng javascript

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

//output : 1234.56
Kamran Taghaddos

Tambahkan char di indeks spesifik stirng 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

Jawaban yang mirip dengan “Tambahkan char di indeks spesifik stirng javascript”

Pertanyaan yang mirip dengan “Tambahkan char di indeks spesifik stirng javascript”

Lebih banyak jawaban terkait untuk “Tambahkan char di indeks spesifik stirng javascript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya