I'm trying to replace the values for "min" and "max" price within the following URL string:
var url_full = "http://foo.com/?q=&min=0&max=789"
var url_clean = url_full.replace('&min='+ /\d+/,'');
var url_clean = url_full.replace('&max='+ /\d+/,'');
Struggling to replace the prices.