gpt4 book ai didi

java - 用于检索 http ://from the given URL 的正则表达式

转载 作者:行者123 更新时间:2023-12-01 22:54:02 25 4
gpt4 key购买 nike

我想根据给定 URL 中使用的协议(protocol)检索 http://或 https://。

如何使用模式和匹配器来做到这一点?

如果还有其他方法可以做到这一点,请向我建议代码片段。

这是我的网址 https://www.google.co.in/#q=retrieving+http:%2F%2F+from+url+using+java+regular+expression+

提前致谢

最佳答案

另一种方式:

String urlString = "https://www.google.co.in";
URL url = new URL(urlString);
String protocol = url.getProtocol();

关于java - 用于检索 http ://from the given URL 的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24362040/

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