java 使用正则表达式如何匹配 href="xxxxxx",就是要href整个字符串

 我来答
wskfhvhc
2013-10-16 · TA获得超过692个赞
知道小有建树答主
回答量:307
采纳率:66%
帮助的人:301万
展开全部

href  这几个字要不要? 如果只是要取出" "中的字符串的话,可以这样:

import java.util.regex.*;

public class Test {
public static void main(String[] args) {
String ptn = ".*href=\"(.*)\"";
Pattern p = Pattern.compile(ptn, Pattern.DOTALL);
String s = "href=\"1alkjdflkajdfjalkdfj1\""; // \" 转义 ,表示"
Matcher m = p.matcher(s);
if (m.find()) {
System.out.println(m.group(1));
} else {
System.out.println("not match");
}
}
}
更多追问追答
追问

而且单双引号的都要
例如:href="xxxxxx"或href='xxxxxxx'
追答
那你就在前面加上href这几个字符
tingfeng0922ok
2017-12-16
知道答主
回答量:8
采纳率:0%
帮助的人:8038
展开全部
List<String> hrefList = new ArrayList<String>();
// Pattern compile = Pattern.compile("<a .*?\\s+href=[\"'](http.+?)[\"']\\s*.*?>.*?</a>");
Pattern compile = Pattern.compile("<a .*?\\s+href=[\"'](http[^>^\"^']*).*?</a>");

Matcher matcher = compile.matcher(str);
while (matcher.find()) {
hrefList.add(matcher.group(1));
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友748bedb
2013-10-16 · 贡献了超过101个回答
知道答主
回答量:101
采纳率:0%
帮助的人:36.7万
展开全部
String reg = "";
boolean flag = href.matchs(reg);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式