scrape ASIN from amazon URL using javascript

前端 未结 16 721
旧巷少年郎
旧巷少年郎 2021-01-30 11:42

Assuming I have an Amazon product URL like so

http://www.amazon.com/Kindle-Wireless-Reading-Display-Generation/dp/B0015T963C/ref=amb_link_86123711_2?pf_rd_m=ATVP         


        
16条回答
  •  既然无缘
    2021-01-30 12:26

    A little bit of change to the regex of the first answer and it works on all the urls I have tested.

    var url = "http://www.amazon.com/Kindle-Wireless-Reading-Display-Generation/dp/B0015T963C";
    m = url.match("/([a-zA-Z0-9]{10})(?:[/?]|$)");;
    print(m);
    if (m) { 
        print("ASIN=" + m[1]);
    }

提交回复
热议问题