RSS and Xml help
in
Programming Questions
•
2 years ago
I am trying to get data from
http://feeds.bbci.co.uk/news/rss.xml which i have done what i'm wanting help with is breaking it into content and display it as text.
Please can anyone help me
here is the code so far. //sorry if its simple im just learning at the moment
import processing.xml.*;
XMLElement xml;
void setup() {
size(200, 200);
xml = new XMLElement(this, "http://feeds.bbci.co.uk/news/rss.xml");
println(xml);
}
1