Skip to content

JC_stage_Xquery_SWH

Stevenholloway edited this page Jun 13, 2014 · 1 revision

declare default element namespace "http://www.tei-c.org/ns/1.0";

(: Tokenizes actor names in Folger Shakespeare JC.xml stage directions, removes extraneous actor-name markup, prints stage direction numbers, and prints "none" if no actor is mentioned in the directions :)

let $p := //stage for $act in $p/@who ! tokenize(., " |_JC") for $actor in $act ! tokenize(., " |#") for $stg in //stage return

<TEI_sorta> { if ($actor) then $actor else "none" } { $stg/@type } { $stg/@n } </TEI_sorta>