方法 : Visual Basic で URI を解析する
更新 : 2007 年 11 月
System.Uri クラスを使用して URI を解析する方法は、次の例のようになります。
使用例
この例では、Uri オブジェクトの複数のメソッドを使用して、URI に関する情報を取得しています。
Dim uriString As String = "https://www.contoso.com/index.htm?date=today"
Dim uriObject As New Uri(uriString)
' Display "Scheme: http"
MsgBox("Scheme: " & uriObject.Scheme)
' Display "Host: www.contoso.com"
MsgBox("Host: " & uriObject.Host)
' Display "Local path: /index.htm"
MsgBox("Local path: " & uriObject.LocalPath)
' Display "Query: ?date=today"
MsgBox("Query: " & uriObject.Query)