Last active
November 28, 2016 11:03
-
-
Save bekapod/7a52164ef34a5e072e65 to your computer and use it in GitHub Desktop.
JS: Replace URL Parameter
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
function replaceUrlParam(uri, key, value) { | |
var re = new RegExp("([?&])" + key + "=.*?(&|$)", "i"), | |
separator = uri.indexOf('?') !== -1 ? "&" : "?"; | |
if (uri.match(re)) { | |
return uri.replace(re, '$1' + key + "=" + value + '$2'); | |
} else { | |
return uri + separator + key + "=" + value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment