我在 MYSQL 表中有一个列,它接受具有 HTML 标记的 TEXT。现在我想在 HTML img src 属性中找到所有具有 .png/.jpg 的 URL。
例如:
表名:mdl_course_sections;列名:摘要;摘要的数据类型:TEXT
样本记录:
Summary
----------
<table border="0">
<tbody>
<tr>
<td><img style="display: block; margin-left: auto; margin-right: auto;" src="http://xyz.au/abc.png" height="64" width="64" /></a></td>
<td> Learn about video slideshows.</td>
</tr>
<tr>
<td><img src="http://i1325.photobucket.com/albums/u630/teststudplane/plane-2.jpg" height="95" width="100" /></td>
<td> Explore how video can reinvent education.</td>
</tr>
</table>