How do I replace a character at a particular index in JavaScript?

后端 未结 24 2084
孤城傲影
孤城傲影 2020-11-21 07:23

I have a string, let\'s say Hello world and I need to replace the char at index 3. How can I replace a char by specifying a index?

var str = \"h         


        
24条回答
  •  说谎
    说谎 (楼主)
    2020-11-21 07:58

    You can extend the string type to include the inset method:

    String.prototype.append = function (index,value) {
      return this.slice(0,index) + value + this.slice(index);
    };
    
    var s = "New string";
    alert(s.append(4,"complete "));

    Then you can call the function:

提交回复
热议问题