Today I Learned: When using the simple map operator ! I use . to refer to the current sequence element in the mapping function. E.g. tokenize(…) ! substring-after(., ‘HANS’) maps the sequence of tokenize() and removes the prefix HANS from every item. #xslt3 #xslt #todayilearned
@dmaus In XQuery 4.0 you could do tokenize(…) -> substring-after( ‘HANS’)