Java截取有规律的字符串,要截取下面两段中图片的路径出来,可能有多个<input>,怎么截取,请高手回答
<inputalt=""src="/userfiles/files/333.jpg"style="width:180px;height:240px"type="image...
<input alt="" src="/userfiles/files/333.jpg" style="width: 180px; height: 240px" type="image" />
<input alt="" src="/userfiles/files/1.jpg" style="width: 101px; height: 102px" type="image" />
若能解决另有高分奉送 展开
<input alt="" src="/userfiles/files/1.jpg" style="width: 101px; height: 102px" type="image" />
若能解决另有高分奉送 展开
展开全部
这是网页里边的截取么,用javascript 获取属性src里的值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static void main(String[] args) {
String str =
"<input alt=\"\" src=\"/userfiles/files/333.jpg\" style=\"width: 180px; height: 240px\" type=\"image\" />" +
"<input alt=\"\" src=\"/userfiles/files/1.jpg\" style=\"width: 101px; height: 102px\" type=\"image\" />";
String regex = "<input alt=\"\" src=\"([^\"]+\\.jpg)\"";
Pattern p =Pattern.compile(regex);
Matcher m = p.matcher(str);
while(m.find()){
System.out.println(m.group(1));
}
}
String str =
"<input alt=\"\" src=\"/userfiles/files/333.jpg\" style=\"width: 180px; height: 240px\" type=\"image\" />" +
"<input alt=\"\" src=\"/userfiles/files/1.jpg\" style=\"width: 101px; height: 102px\" type=\"image\" />";
String regex = "<input alt=\"\" src=\"([^\"]+\\.jpg)\"";
Pattern p =Pattern.compile(regex);
Matcher m = p.matcher(str);
while(m.find()){
System.out.println(m.group(1));
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询