CocoonHive.org - XQuery Sandbox
Enter an XQuery script and click Run to execute.
define function row ($link, $title) {
RSS item
{$title}
is located at
{$link}
} define function filter-rss ($url) { for $b in document($url)/rss/channel/item return row($b/link/text(), $b/title/text()) }
Remote RSS Feed Demo, written in XQuery. Compiled and Run by The Open Source QEXO.org engine.
{filter-rss("http://radio.weblogs.com/0109827/rss.xml")}