Hi,

I've just started out with regexp. Can anyone help me solve this, my first try with regexp.

I need to get some data from an html-file. What I want to do is to find lines like the following:

Code:
<A HREF="http://db.afv.se/afv/owa/w3 page=Afv_Fond2&n=Fondid&v=2574">AMF Sverige</A>                       199,45 SEK<b>   199,45</b>  +14,9  14/11
And get the result:

Code:
AMF Sverige;199,45;199,45;+14,9;14/11
The syntax is the same for these lines but the links are different.

Any great regexp programmers out there?