|
|
|
|
|
by epistasis
5403 days ago
|
|
I don't really get the point. Unix has been fantastic at scraping and munging text for decades. curl http://weather.yahoo.com/united-states/california/san-jose-2488042/ | sed '/Current conditions/s/.*id="yw-temp">\([0-9]\+\).*/\1/'
It may be fragile, but any method of extracting data out of HTML is going to be fragile when the provider changes design or layout.A tiny bit of knowledge of grep, sed, and awk, and other simple unix text utilities such as join, comm, cut, paste, goes a long long way. |
|
The tl;dr I got from the article was LINQ is effective at working with sets of data; not just sets of text data from a text file.