Using regular expressions to extract data from HTML sources is frowned at at stackoverflow. Please consider using a html parser for this task (e.g. SimpleHTMLDom).
If you want to do this once, and quick and very dirty, maybe you can get away with something like
"<span class=bld>([^<]*)</span>"
This assumes that all and only all the currency values you are interested in are contained in span tags, with class bld and no other attributes.
Jens
2010-07-02 13:24:34