I have an xml file with many lines like:
<xhtml:link vip="true" href="http://store.vcenter.com/stores/en/product/tigers-midi/100" />
How do I extract just the link - http://store.vcenter.com/stores/en/product/tigers-midi/100
?
I tried http://www\.\.com[^<]+
but that captures everything untill the end of the line - including quotes and closing XML tags.
I'm using this expression with egrep.