文本如下:
<img src=" http://www.soso.com/1.gif">
<img src=" http://www.soso.com/2.gif">
<img src=" http://www.soso.com/xxx.jpg">
求一个正则表达式能够搜索出如下结果
多谢!
文本如下:
<img src=" http://www.soso.com/1.gif">
<img src=" http://www.soso.com/2.gif">
<img src=" http://www.soso.com/xxx.jpg">
求一个正则表达式能够搜索出如下结果
多谢!
文本操作就不在这里写了,只给出关键的代码,用正则取图片地址,你根据实际的需求改改。
import java.util.regex.Pattern; import java.util.regex.Matcher; public class Test { private static final String REGEX_EXP="^<img src=\"(.*)\">$"; public static void main(String[] args) { String str="<img src=\" Pattern p=Pattern.compile(REGEX_EXP); Matcher m=p.matcher(str); String url=""; if(m.matches()) { url=m.group(1); } System.out.println(url); } }