如何从网址中提取子字符串?

时间:2014-10-17 06:00:44

标签: regex

我需要从以下网址中删除C5044SGXAU:

    <div class="zg_itemImageImmersion"><a href="http://www.website.com/Doggy-PIC-14-Pitbull-Induction-1500-Matt/dp/C5044SGXAU/ref=zg_bs_3741261_1"><img src="http://dog.images-website.com/images/I/41dXgzYztML._SL160_SL150_.jpg" alt="Doggy PIC-14 Pitbull Induction Cookt..." title="Doggy PIC-14 Pitbull Induction Cookt..." onload="if (typeof uet == 'function') { uet('af'); }"></a></div>

我试图得到这个结果:

C5044SGXAU

怎么做?

1 个答案:

答案 0 :(得分:1)

使用以下正则表达式

http:\/\/[^\/]+\/[^\/]+\/[^\/]+\/([^\/]+)\/[^\/]+

Demo