在Android中,我想从image标签获取src属性的值,如下所示。
<img border="0" height="430" src="http://2.bp.blogspot.com/-551kBiFcc3o/US2MxmAHq1I/AAAAAAAAZvM/DjurUt5-4Ac/s640/856738_537952452911181_897510449_o.jpg" width="640">
答案 0 :(得分:1)
您可以尝试使用regular expressions过滤掉img src:
String imgRegex = "<img[^>]+src\\s*=\\s*['\"]([^'\"]+)['\"][^>]*>";
只有在you know what you're doing(如评论中注明的CommonsWare)
时才应使用此功能其余由您决定 - 您已经向我们提供了有关背景的一些信息。