A temporary hack is now implemented in svn and latest nightly packages.

Regexes in the form /.../l (lower-case L) will match against all tags on a
reading.

The reading is appended to a single string with single space between tags,
so to match a literal space escape it with \

__ (two underscores) is treated special and means space or start or end or
any non-space tags - it is shortcut for (^|$| | .+? )

Examples:
- /A\ B/l will match input tags DCA BCD due to substring "A B"
- /__A\ B__/l will match input tags A B but not A C B or DCA BCD
- /__A__B__/l will match input tags A C D E B but not B C A

This is a temporary hack that will be removed later.

-- Tino Didriksen

-- 
You received this message because you are subscribed to the Google Groups 
"Constraint Grammar" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/constraint-grammar.
For more options, visit https://groups.google.com/d/optout.

Reply via email to