in reply to Re: When constructing a URL from script variables, how do I handle spaces properly?
in thread When constructing a URL from script variables, how do I handle spaces properly?

I've also used the code below to replace spaces with the correct chars.
$value =~ s/\s/\%20/g;
And it seems to work good for my purposes.
  • Comment on RE: Answer: When constructing a URL from script variables, how do I handle spaces properly?
  • Download Code