Closed ritzlae closed 2 years ago
The following parser matches 'i': _EE_EXT = /[A-Z]/
_EE_EXT = /[A-Z]/
as the debug message shows: Last match: 3, 24: _document->_EE_EXT; MATCH; "i";
Last match: 3, 24: _document->_EE_EXT; MATCH; "i";
Okay, my fault. In my ebnf-file case-sensitivity was falsely set: @ ignorecase = True
@ ignorecase = True
it should be: @ ignorecase = False
@ ignorecase = False
Now everything works as expected.
The following parser matches 'i':
_EE_EXT = /[A-Z]/
as the debug message shows:
Last match: 3, 24: _document->_EE_EXT; MATCH; "i";