I would like to extract data from a document with VIM using regular expression but I only need the exact match and not the hole line. Basically just copy what :%s would replace.
Simple example:
<td>sell:8092.23</td>
<td>buy:850.00</td>
<td>sell:99.99</td>
... and extract the numbers:
8092.23
850.00
99.99
Is this possible in VIM and if how? Thanks in advance.