找到一个匹配HTML的正则表达式

时间:2015-08-27 09:24:53

标签: html regex

我试图找到一个正则表达式模式,用于此示例以仅匹配/ p /

之后的数字值
/store/shop/en/model/brand/Heisman-On/p/15890735"target="">Heisman-on
/store/shop/en/model/brand/Heisman/p/03518616"target="">Heisman
/store/shop/en/model/brand/2tee-Cove3/p/67834675"target="">2tee-Cove3

如:

  

15890735

     

03518616

     

67834675

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

/(?:\/p\/)(\d+)/i

http://regexr.com/3blr5

您的目标是$1输出