1

我是 VB.NET 的新手,我正在尝试将通配符 (*) 替换为任何字符串。像这样的东西:

    If WebBrowser1.Url.ToString = "http://google.com/*" Then

        'Insert action here'

    End If

不幸的是,通配符不起作用。我想要它,这样 URL 就可以是任何东西,只要它以http://google.com/开头 有什么办法吗?

4

1 回答 1

1

尝试这样做:

If WebBrowser1.Url.ToString.StartsWith("http://google.com/") Then

    'Insert action here'

End If
于 2012-12-05T00:48:44.147 回答