fck截取

public static List<String> getImgStr(String htmlStr){     
    String img="";     
    Pattern p_image;     
    Matcher m_image;     
    List<String> pics = new ArrayList<String>();  
 
    String regEx_img = "<img.*src=(.*?)[^>]*?>"; //图片链接地址     
    p_image = Pattern.compile   
            (regEx_img,Pattern.CASE_INSENSITIVE);     
   m_image = p_image.matcher(htmlStr);   
   while(m_image.find()){     
        img = img + "," + m_image.group();     
        Matcher m  = Pattern.compile("src=\"?(.*?)(\"|>|\\s+)").matcher(img); 
        while(m.find()){  
           pics.add(m.group(1));  
     
        }  
    }     
       return pics;     
}    

你可能感兴趣的:(fck截取