I want to remove this from a url string
http://.....?page=1
I know this doesn't work, but I was wondering how you would do this properly.
document.URL.replace("?page=[0-9]", "")
Thanks
|
I want to remove this from a url string
Thanks |
|||||||
|
|
It seems like you want to get rid of the protocol and the querystring. So how about just concatenating the remaining parts?
I'm not entirely certain what the requirements are, but this fairly simple regex works.
It may be a naive implementation, but give it a try and see if it fits your need. |
|||||||||||
|
|
|
|||||||||||||
|
|
The answer from @patrick dw is most practical but if you're really curious about a regular expression solution then here is what I would do:
|
|||
|
|
|
You're super close. To grab the URL use location.href and make sure to escape the question mark.
var URL = location.href.replace("\?page=[0-9]", "");
location.href = URL; // and redirect if that's what you intend to do
You can also strip all query string parameters:
var URL = location.href.replace("\?.*", "");
|
|||
|
|