0

我正在创建一个 jQuery Mobile 应用程序,它解析 RSS 提要并将条目动态输入到 DOM 中。我正在使用该.contentSnippet功能<description>...</description><em>...</em>. 如何使用 Javascript 和 RegEx 选择此内容?这是我正在使用的 RSS 的样子。

<description><![CDATA[<font size="2"><em>American Banker Magazine (03/13) Fest, Glen</em>...</description>

我将提要作为 JSON 对象引入。

4

1 回答 1

0

如果您确定要使用正则表达式,可以使用

var str = '<description><![CDATA[<font size="2"><em>American Banker Magazine (03/13) Fest, Glen</em>...</description>',
    m = str.match( /<em>(.+?)<\/em>/ );

console.log( m && m[1] || 'Nothing doing' );
// American Banker Magazine (03/13) Fest, Glen
于 2013-03-04T18:32:30.123 回答