我有一个格式良好的XHTML页面。当我具有链接的文本时,我想找到链接的目标URL。
例
<a href="http://stackoverflow.com">programming questions site</a>
<a href="http://cnn.com">news</a>
我想要一个的XPath表达式,如果给programming questions site
它会给http://stackoverflow.com
,如果我给它news
,它会给http://cnn.com
。