Skip to content

Instantly share code, notes, and snippets.

@mlbd
Created May 15, 2018 04:00
Show Gist options
  • Save mlbd/8bbfb99b81289aa57d774cfba6771f9d to your computer and use it in GitHub Desktop.
Save mlbd/8bbfb99b81289aa57d774cfba6771f9d to your computer and use it in GitHub Desktop.
String.prototype.getValueByKey = function(k){
var p = new RegExp('\\b'+k+'\\b','gi');
return this.search(p) != -1 ? decodeURIComponent(this.substr(this.search(p)+k.length+1).substr(0,this.substr(this.search(p)+k.length+1).search(/(&|;|$)/))) : "";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment