I have come accross a specification that said described a field as :
Any URL char
And I wanted to validate it on my side via a REGEX.
I searched a bit and, even if I found this great SO question that contains every piece of information I needed, I found it too bad not to have a question asking precisely for the regex, so here I am.
What would be a proper regex matching any URL character ?
Edit
I extracted the following regex from what I understood from the specification :
[\w\-.~:/?#\[\]@!$&'()*+,;=%]
So, is this REGEX right and exhaustive or did I miss anything ?
After reading the specification, I guess it is simply "all ASCII characters".