uri-library icon indicating copy to clipboard operation
uri-library copied to clipboard

uri-library lacks support of percent-encoded query value

Open hammurapi opened this issue 2 years ago • 0 comments

I need to parse URIs which contain arbitrary characters in the query value. To be able to do this the URI library needs to be able to decode the percent-encoded value string.

Here is an example : http://a/b/?q1=question-mark%3f&q2=ampersand%26 The query parameters of this URI should result in these decoded parameter-name parameter-value pairs: q1=question-mark? q2=ampersand&

hammurapi avatar Jul 13 '23 19:07 hammurapi