Skip to content

Instantly share code, notes, and snippets.

@CliffordAnderson
Forked from jimdur8n/seriesTitle.xq
Created October 9, 2019 22:30
Show Gist options
  • Save CliffordAnderson/e552a4a029110d73ea5645be767bbf8b to your computer and use it in GitHub Desktop.
Save CliffordAnderson/e552a4a029110d73ea5645be767bbf8b to your computer and use it in GitHub Desktop.
xquery version "3.1";
declare function local:seriesTitle($Network as xs:string?) as xs:string
{
switch ($Network)
case "ABC" return "ABC World News Tonight"
case "CBS" return "CBS Evening News"
case "NBC" return "NBC Nightly News"
default return "unknown network"
};
let $seriesTitle := local:seriesTitle("NBC")
return $seriesTitle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment