尽管尝试了各种在线正则表达式测试器,但这里的全新程序员在正则表达式方面遇到了麻烦。我在 Eclipse 中开发一个 Android 项目我正在查询一个 openx 广告服务器以获取文本广告并得到这个作为回报:
var OX_abced445 = '';
OX_abced445 += "<"+"a href=\'http://the.server.url/openx/www/delivery/ck.php?oaparams=2__bannerid=29__zoneid=3__cb=e3efa8b703__oadest=http%3A%2F%2Fsomesite.com\'target=\'_blank\'>This is some sample text to test with!<"+"/a><"+"div id=\'beacon_e3efa8b703\'style=\'position: absolute; left: 0px; top: 0px; visibility:hidden;\'><"+"img src=\'http://the.server.url/openx/www/delivery/lg.php?bannerid=29&campaignid=23&zoneid=3&loc=1&cb=e3efa8b703\' width=\'0\'height=\'0\' alt=\'\' style=\'width: 0px; height: 0px;\' /><"+"/div>\n";
document.write(OX_abced445);
我需要提取第一个 href url,而不是 img src url,所以我想我应该有一个正则表达式来查找 and 之间的所有href=\'
内容'
。我还需要提取目标文本,即。This is some sample text to test with!
封装在_blank\'>
和之间<"+"/a>
。我发现很多正则表达式处理提取 url 等,但在这种特殊情况下很难让一个在 Eclipse 中工作。任何援助将不胜感激。