我想以這種形式獲得所有帶有href屬性的「a」元素:http(s)://any.example.com其中any可以是隻包含字母和/或數字的字符串。 我是新來的正則表達式和XPath,所以我不能正確的。 我理解了它的正則表達式,但我不知道,如果是100%正確的: 代碼:document.evaluate正則表達式
/(http|https)://+[A-Za-z0-9]+\.example+\.+com/
所以XPath的是這樣的: 代碼:
document.evaluate("//a[@href='/(http|https)://+[A-Za-z0-9]+\.google+\.+com/']" , document , null , XPathResult.ORDERED_NODE_SNAPSHOT_TYPE , null);
,但它不沒有工作。
如果有人能幫助我,我將不勝感激。
確定它的工作原理,但我沒有發現什麼,我想 –
你想找出什麼? – Bohemian
如何將正則表達式與xpath結合使用 –