htmlEncodeStringReplacement (v60)

Revision 60 of this benchmark created by Phillip Couto on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Setup

var html = document.body.innerHTML;
    var map = {
      "&": "&amp;",
      "'": "&#39;",
      '"': "&quot;",
      "<": "&lt;",
      ">": "&gt;"
    };
    
    function replaceEntity(chr) {
      return map[chr];
    }
    var tempElement = $(document.createElement("div"));
    String.prototype.replaceAll = function(str1, str2, ignore) {
      return this.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g, "\\$&"), (ignore ? "gi" : "g")), (typeof(str2) == "string") ? str2.replace(/\$/g, "$$$$") : str2);
    };
    String.prototype.htmlEncode = function() {
      return this.replace(/&/g, '&amp;').replace(/"/g, '&quot;').replace(/'/g, '&#39;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
    };
    var re_amp = /&/g;
    var re_squo = /'/g;
    var re_dquo = /"/g;
    var re_lt = /</g;
    var re_gt = />/g;
    var cachedRegex = /[&"'\<\>]/g;

Test runner

Ready to run.

Testing in
TestOps/sec
multiple replace()
return html.replace(/&/g, '&amp;').replace(/"/g, '&quot;').replace(/'/g, '&#39;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
ready
single replace with map
return html.replace(/[&"'\<\>]/g, function(c) {
  return map[c];
});
ready
single replace with switch
return html.replace(/[&"'\<\>]/g, function(c) {
  switch (c) {
    case "&":
      return "&amp;";
    case "'":
      return "&#39;";
    case '"':
      return "&quot;";
    case "<":
      return "&lt;";
    case ">":
      return "&gt;";
  }

});
ready
use jQuery
return $('<div/>').text(html).html();
ready
use jQuery with pre-created element
return tempElement.text(html).html();
ready
predefined regexp literals
return html.replace(re_amp, '&amp;').replace(re_dquo, '&quot;').replace(re_squo, '&#39;').replace(re_lt, '&lt;').replace(re_gt, '&gt;');
ready
.innerHTML
return document.createElement('div').appendChild(document.createTextNode(html)).parentNode.innerHTML;
ready
string replaceAll method
return html.replaceAll('&', '&amp;').replaceAll('"', '&quot;').replaceAll("'", '&#39;').replaceAll('<', '&lt;').replaceAll('>', '&gt;');
ready
replace chain on prototype
return html.htmlEncode();
ready
single replace with pre-defined function
return html.replace(/[&"'\<\>]/g, replaceEntity);
ready
Cached Regex
return html.replace(/[&"'\<\>]/g, function(c) {
  return map[c];
});
ready
For loop iteration
var i = 0,
  len = html.length,
  result;

for (; i < len; i++) {
  result += map[html[i]] || '';
}
return result;
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.