| Syntax 
   any
  OR  (as an element test)
  content is any
 
 Purpose
 
 Can be used in a pattern to match all possible characters or can be used in an element content-type test.
 When used in pattern matching, anycan be used with any of the pattern repetition and optionality modifiers: any+-- any character must occur at least once, and may occur several timesany*-- any character can occur several times, or not at allany?-- any character may occur once, or may be omitted
 anymay be used as part of a custom character class to precisely define the characters sought. For example, to define a character class consisting of non-ASCII vowels, the class can be defined as: [any except "aeiouAEIOU"].
 As an element test, anyis used specifically in a content is test. Briefly, the test succeeds if the stated element is declared of typeany. |