gpt4 book ai didi

java - 用正则表达式匹配两个url

转载 作者:行者123 更新时间:2023-11-29 06:44:29 25 4
gpt4 key购买 nike

我有一个 url 列表,我想使用正则表达式将这些 url 与这个 url 匹配

http://investor.somehost.com/*

here * means anything after that or you can say it's a wildcard...

String href = url.getURL();

这里的 href 包含了所有的 url。

假设 firstentry 包含上面的 url (http://investor.somehost.com/*)

那么我如何比较 href 和 firstentry,如果 href 以这个 url 开头,那么做这件事......

最佳答案

如果您只想确定一个字符串是否以特定前缀开头,请使用 startsWith(String prefix) .

例子:

String href = "http://google.com/mail";
if(href.startsWith("http://google.com")) {
//... Do stuff
}

关于java - 用正则表达式匹配两个url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7287433/

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