I want to convert a string to an url and, instead of a space, it needs a "+" between the keywords.
For instance:
"Hello I am"
to:
"Hello+I+am"
How should i do this?
|
I want to convert a string to an url and, instead of a space, it needs a "+" between the keywords. For instance:
to:
How should i do this? |
||||
|
|
|
|||
|
For URLs, I strongly suggest to use Server.UrlEncode (in ASP.NET) or Uri.EscapeUriString (everywhere else) instead of String.Replace. |
|||
|
|
|
you can try String.Replace
|
|||
|
|
|
You can use
If you want to url encode a string (so not only spaces are taken care of), use
From MSDN:
|
||||
|
|
Assuming that you only want to replace spaces with pluses, and not do full URL-encoding, then you can use the built-in
|
|||
|
|
|
|||||
|
|
To answer the 'convert a string to an url' part of your question (you shouldn't manually convert the string if you want a correct URL):
You call Url Encode on each parameter to correctly encode the values. |
|||
|
|