我有一段包含:
<h1 class="entry-title">
Zynga 德州扑克牌 – 免费筹码</h1>
<p><img class="aligncenter size-full wp-image-276" id="download" alt="DownloadNow" src="http://xyz/wp-content/uploads/2013/08/DownloadNow.gif"
width="357" height="111" /> <span style="text-decoration: underline;"><em><strong>Instructions how to use the cards:</strong></em></span></p>
我使用以下粗体获得了所需的匹配:
(?<="entry-title\">)(.*?)(?=(-|</h1))
但我不知道如何将此匹配转换为 jquery 中的字符串。
我应该使用var matched = (?<="entry-title\">)(.*?)(?=(-|</h1));
将要
alert(matched);
显示想要的结果?