如何在vb.net中向URL添加通配符

时间:2012-12-05 00:46:52

标签: vb.net

我是VB.NET的新手,我正在努力使其能够被任何字符串替换为通配符(*)。像这样的东西:

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

        'Insert action here'

    End If

不幸的是,通配符不起作用。我想拥有它,以便只要从http://google.com/开始,URL就可以是任何内容 有没有办法做到这一点?

1 个答案:

答案 0 :(得分:1)

尝试改为:

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

    'Insert action here'

End If