Skip to content

Instantly share code, notes, and snippets.

@lis186
Created October 19, 2015 06:39
Show Gist options
  • Save lis186/35fc6adec171f6aa22d9 to your computer and use it in GitHub Desktop.
Save lis186/35fc6adec171f6aa22d9 to your computer and use it in GitHub Desktop.
Search result highlight
var querystr = 'o';
var result = 'Hello World';
var reg = new RegExp(querystr, 'gi');
var final_str = result.replace(reg, function(str) {
return '<strong>' + str + '</strong>';
});
// final_str = 'Hell<strong>o</strong> W<strong>o</strong>rld'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment