文字列関連

[VB.NET] URLエンコードとURLデコード

2015年10月28日

URLエンコードとURLデコードをするには、
HttpUtility.UrlEncodeHttpUtility.UrlDecode を使用します。

サンプル

例)URLエンコードをする


'URLエンコード
Dim encodeStr As String = HttpUtility.UrlEncode("http://xxx.xx?aa=漢字")

結果

encodeStr→
http%3a%2f%2fxxx.xx%3faa%3d%e6%bc%a2%e5%ad%97

例)URLデコードをする


'URLデコード
Dim decodeStr As String =
  HttpUtility.UrlDecode("http%3a%2f%2fxxx.xx%3faa%3d%e6%bc%a2%e5%ad%97")

結果

decodeStr→
http://xxx.xx?aa=漢字

-文字列関連