| http://www.w3.org/ns/prov#value | - WSPC = # whitespace = space + tab SPC = [$WSPC] # regexp whitespace, the short name # SPC was chosen because you use this # a lot in condition lines. NSPC = [^$WSPC] # negation of whitespace :0 *$ var ?? $NSPC { # match anything except space and tab } :0
|