>웹 프론트엔드 >HTML 튜토리얼 >html字符操作_html/css_WEB-ITnose

html字符操作_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-21 08:56:581406검색

 public class Test { /**  * @Title: main   * @Description:  * @param args   * @author   * @date 2016年2月17日  * 1、去掉字符串中所有的标签,获取纯文本内容  * 2、获取html节点中img的src路径  */ public static void main(String[] args) {  String html = "<div><p style='color:red;'>12132第一串字符</p></div><br /><div><p>这是第二窜字符</p></div><img     style="max-width:90%" src='_image/12/label'/ alt="html字符操作_html/css_WEB-ITnose" ><img     style="max-width:90%" src='_image/13/label'/ alt="html字符操作_html/css_WEB-ITnose" ><img     style="max-width:90%" src='_image/14/label'/ alt="html字符操作_html/css_WEB-ITnose" >";  Pattern p = Pattern.compile("<img [^ alt="html字符操作_html/css_WEB-ITnose" >]+src\\s*=\\s*['\"]([^'\"]+)['\"][^>]*>");  Matcher m = p.matcher(html);  List<String> srcs = new ArrayList<String>();        while(m.find()){            srcs.add(m.group(1));        }  String regex = "<[^>]*>";  String str = html.replaceAll(regex, "");  System.out.println(str+"\n"+srcs.get(0)); }}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.