我不能發佈我試圖提取的確切數據,但這裏是一個基本的場景,具有相同的結果。我抓住了頁面的正文,並試圖從中提取一個bit.ly鏈接。舉例來說,這是我試圖從中獲取鏈接的大量數據。如何使用JavaScript從字符串獲取數據正則表達式
字符串:現在
<a href="/l.php?u=http%3A%2F%2Fbit.ly%2FPq8AkS&h=aAQFZxdL0&s=1" target="_blank" rel="nofollow nofollow" onmouseover="LinkshimAsyncLink.swap(this, "http:\\/\\/bit.ly\\/Pq8AkS");" onclick="LinkshimAsyncLink.referrer_log(this, "http:\\/\\/bit.ly\\/Pq8AkS", "http:\\/\\/www.facebook.com\\/si\\/ajax\\/l\\/render_linkshim_log\\/?u=http\\u00253A\\u00252F\\u00252Fbit.ly\\u00252FPq8AkS&h=aAQFZxdL0&s=1");">http://bit.ly/Pq8AkS</a></div><div class="shareUnit"><div class="-cx-PRIVATE-fbTimelineExternalShareUnit__wrapper"><div><div class="-cx-PRIVATE-fbTimelineExternalShareUnit__root -cx-PRIVATE-fbTimelineExternalShareUnit__hasImage"><a class="-cx-PRIVATE-fbTimelineExternalShareUnit__video -cx-PRIVATE-fbTimelineExternalShareUnit__image -cx-PRIVATE-fbTimelineExternalShareUnit__content" ajaxify="/ajax/flash/expand_inline.php?target_div=uikk85_59&share_id=271663136271285&max_width=403&max_height=403&context=timelineSingle" rel="async" href="#" onclick="CSS.addClass(this, "-cx-PRIVATE-fbTimelineExternalShareUnit__loading");CSS.removeClass(this, "-cx-PRIVATE-fbTimelineExternalShareUnit__video");"><i class="-cx-PRIVATE-fbTimelineExternalShareUnit__play"></i><img class="img" src="http://external.ak.fbcdn.net/safe_image.php?d=AQDoyY7_wjAyUtX2&w=155&h=114&url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FDre21lBu2zU%2Fmqdefault.jpg" alt="" /></a>
,我能得到什麼,我找下面的代碼,但該鏈接並不總是要準確長6個字符。所以這導致一個問題...
Body = document.getElementsByTagName("body")[0].innerHTML;
regex = /2Fbit.ly%2F(.{6})&h/g;
Matches = regex.exec(Body);
這是我正在嘗試,但我的問題是,它抓住了太多的數據。它會一直到上面的字符串中的最後一個"&h"
,而不是停在它命中的第一個。
Body = document.getElementsByTagName("body")[0].innerHTML;
regex = /2Fbit.ly%2F(.*)&h/g;
Matches = regex.exec(Body);
所以基本上字符串我試圖把重點放在主要的部分是"%2Fbit.ly%2FPq8AkS&h"
這樣我就可以得到「Pq8AkS」出來的。當我使用(.*)
時,它抓住了上面大字符串中"%2F"
和最後一個"&h"
之間的所有內容。
嘗試base-64解碼URL字符串的'u'參數。 – Blender 2012-08-17 00:49:12