我需要从网站中解析出一个数组。我要解析的 JavaScript 部分如下所示:
_arPic[0] = "http://example.org/image1.jpg";
_arPic[1] = "http://example.org/image2.jpg";
_arPic[2] = "http://example.org/image3.jpg";
_arPic[3] = "http://example.org/image4.jpg";
_arPic[4] = "http://example.org/image5.jpg";
_arPic[5] = "http://example.org/image6.jpg";
我使用这样的方法获取整个 JavaScript:
product_page = Nokogiri::HTML(open(full_url))
product_page.css("div#main_column script")[0]
有没有一种简单的方法来解析所有变量?