我需要範圍 實施例替換字符串:如何用範圍替換字符串?
string = "this is a string";//I need to replace index 0 to 3 whith another string Ex.:"that"
result = "that is a string";
但這種需要是dinamically。不能被取代固定字...需要時可使用範圍
我已經試過
result = string.replaceAt(0, 'that');
但這僅替換第一個字符,我想第一至第三
你能不能更多分心請 – user1529342
你試過了什麼?你是否查看了字符串方法的[documentation](https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/String/prototype#Methods)? – jbabey