List of utility methods to do String Splice
String.prototype.splice = function(start, length, replacement) { return this.substr(0, start) + replacement + this.substr(start + length); };