ul Full Description |
|
Syntaxul Purpose Prefixes a sub-pattern to indicate that any letter in the sub-pattern should be matched in either uppercase or lowercase. The following tests, which are equivalent, demonstrate:
global stream alpha-number-text ... when alpha-number-text > ul ("m" | attribute limit) ... when (alpha-number-text > ul "m") | (alpha-number-text > attribute limit) The following example illustrates that when global stream x ... find ul ("abc" when x matches "def") |