gpt4 book ai didi

c# - 从字符串中获取 url

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:41 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Get a URL from a String

您好,我正在尝试使用正则表达式从字符串中提取 url。字符串是这样的:“lorem ipsum baby www.test.com lorem”、“lorem ipsum http://www.test.com foo bar”或“lorem www.test.com”,没有尾随空格。
使用
MatchCollection ms = Regex.Matches(adress, @"(www.+|http.+)([\s]|$)");
返回整个字符串。任何 regexp-guru 都可以帮助我解决这个问题吗?

编辑:
是这样解决的:
MatchCollection mc = Regex.Matches(adress, @"(www[^ \s]+|http[^ \s]+)([\s]|$)", RegexOptions.IgnoreCase);<br/>
adress = mc[0].Value;<br/>
WebBrowserTask task = new WebBrowserTask();<br/>
task.URL = adress;<br/>
task.Show();

谢谢大家的帮助! :)

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com