I have the following string:
http://www.website.com?a=111&b=2222&d=3333
How can I take this string and update the b parameter value with 4444?
var str = 'http://www.website.com?a=111&b=2222&d=3333';
str.replace(/([&\?]b=\d+/,"$1b=4444")
String.replace(/b=([^&]*)/, "b=4444")
b= part so the replacement should be b=4444.var myString = "http://www.website.com?a=111&b=2222&d=3333".replace("b=2222","b=4444")