Created
January 17, 2013 22:54
-
-
Save mkoryak/4560627 to your computer and use it in GitHub Desktop.
regexp search nested objects and wrap hits
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var searchAndWrap = function(obj, regex, blacklist){ | |
var found = false; | |
_(obj).each(function(val, key){ | |
if(!_.include(blacklist || [], key)){ | |
if(_.isObject(val)){ | |
if(searchAndWrap(val, regex, blacklist)){ | |
found = true; | |
} | |
} else { | |
val = val.toString(); | |
obj[key] = val.replace(regex, '<span class="highlight">$1</span>'); | |
if(obj[key].length != val.length){ | |
found = true; | |
} | |
} | |
} | |
}); | |
return found; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment