Question for you gurus. I would like to get exchange rates and uses them on another application...anyway.
With this url http://www.oanda.com/convert/fxdaily?da ... directed=1
I can get a web page from http://www.oanda.com which has the following information embedded
How could I get (download) this web page source using the URL and then search the source to find ONLY the text above...in doing so, i would then parse the info into workable data then used in a future app.Currency,Code,AUD/1 Unit,Units/1 AUD
Euro,EUR,1.9758,0.5064
British Pound,GBP,2.1831,0.4584
Nigerian Naira,NGN,0.01,101.072
US Dollar,USD,1.4879,0.6724
Once I have the source i can for example search for the strings '"Euro,EUR," and the get the exchange rate info, I guess.
Any suggestion/ideas/hints how to go about it? (mainly the html source downloading from the url)
In advance...