The below code error's out with URIError: malformed URI sequence?
when there is a %
sign like 60% - Completed
in the URL string from where I need to extract the parameter value e.g. %%20-%20Completed
<SCRIPT type="text/javascript">
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
</SCRIPT>
I dont have control of the server and need to process the output in my html page.
The below code error's out with URIError: malformed URI sequence?
when there is a %
sign like 60% - Completed
in the URL string from where I need to extract the parameter value e.g. http://some-external-server./info?progress=60%%20-%20Completed
<SCRIPT type="text/javascript">
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
</SCRIPT>
I dont have control of the server and need to process the output in my html page.
I think you need to URI encode the percentage sign as '%25'
http://some-external-server./info?progress=60%25%20-%20Completed
[EDIT]
I guess you could do something like this:
var str = "60%%20-%20pleted";
var uri_encoded = str.replace(/%([^\d].)/, "%25$1");
console.log(str); // "60%25%20-%20pleted"
var decoded = decodeURIComponent(uri_encoded);
console.log(decoded); // "60% - pleted"