This Web
Other Webs
Schematics
Scheme Links
> (require (lib "sxpath.ss" "ssax")) > (define query (sxpath '(// (a (@ (equal? (class "foo")))) *text*))) > (define document '(*TOP* (html (head (title "Foo")) (body (h1 "Foo") (p (a (@ (class "bar")) "don't want this") (a (@ (class "foo")) "this is the answer")))))) > (query document) ("this is the answer")
//
a
(@ (equal? (class "foo")))
*text*