Hi
I get a url string from a user and would like to transform it to a legal http url:
"http://one.two/three?four five" should turn into "http://one.two/three?four%20five"
however, URLEncoder does not help, as it encodes the entire string (including the legal "://").
help?