日期:2014-05-20  浏览次数:20639 次

急问Pattern和Matcher无法匹配换行吗?
<a href="http://www.panguso.com/">
  <IMG src="http://www.panguso.com/1095/20111025/9bfff4d5-b7d9-40ca-83e4-f407d48264c6.png" alt="盘古搜索" title="盘古搜索">
   
</a>
  
对上面这个字段,我怎么匹配不到呢?是因为有换行吗?
我是这么干的
  Pattern patternA = Pattern.compile("<a .*?</a>");
  Matcher matcherA = patternA.matcher(src);  
   
  while (matcherA.find()) {
  String strA = matcherA.group();  
  Log.i(TAG, strA);  
  } 

有没有解决办法?

------解决方案--------------------
能就结贴散分吧