Code: Select all
!>\x61 is parsed as NOT RegExp(\x61)Question:
Why does XY not switch to regex mode by the presence of ">" in the pattern?
Code: Select all
!>\x61 is parsed as NOT RegExp(\x61)But in this case, the RegExp marker, namely, ">", is preceded by "!". Does the ">" still take effect?admin wrote:">" is an inline RegExp marker that overwrites the setting in the Mode field.
The ">" still takes effect. Everything after ">" should be RegExp. So "!" must be before ">".armsys wrote:But in this case, the RegExp marker, namely, ">", is preceded by "!". Does the ">" still take effect?admin wrote:">" is an inline RegExp marker that overwrites the setting in the Mode field.
I would enter ">!>\x61" in the Name field for clarity.
Got it. Thanks you for clearing up all ambiguities.admin wrote:The ">" still takes effect. Everything after ">" should be RegExp. So "!" must be before ">".
It should be added into the Bible.admin wrote:Everything after ">" should be RegExp.