Skip to content

Instantly share code, notes, and snippets.

@MorganDaniels
Created November 21, 2014 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MorganDaniels/e1de7f8cf8dae6dfafb9 to your computer and use it in GitHub Desktop.
Save MorganDaniels/e1de7f8cf8dae6dfafb9 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
xquery version "3.0";
let $doc :=
<html>
<head>
<title>My test webpage</title>
</head>
<body>
<h1>Hello, world!</h1>
<p>Welcome to my test web page!</p>
</body>
</html>
for $text in $doc//text()
return fn:upper-case($text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment