vote up 0 vote down star

I want to match links like <a href="mailto:my@email.com">foo</a>, but this doesn't work only works in Nokogiri:

doc/'a[href ^="mailto:"]'

What's the right way of doing that? How do I do that with Hpricot?

flag

72% accept rate

2 Answers

vote up 2 vote down
doc/"//a[starts-with(@href,'mailto')]"
link|flag
I tried that, also didn't work. Then I switched to Nokogiri and both examples worked. I thought they had similar APIs. Doesn't Hpricot also support css-selector/xpath searches? Do you know how to do the same in Hpricot? – obvio171 Nov 3 at 3:00
vote up 0 vote down

This works on Hpricot:

doc/'a[@href ^="mailto:"]'

Couldn't figure out a way to do the xpath search though. Apparently, Hpricot doesn't support starts-with: http://wiki.github.com/hpricot/hpricot/supported-xpath-expressions

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.