BeRo1985 / flre

FLRE - Fast Light Regular Expressions - A fast light regular expression library
GNU Lesser General Public License v2.1
94 stars 23 forks source link

Q ignored #35

Closed benibela closed 7 years ago

benibela commented 7 years ago

this all returns TRUE:

  writeln(TFLRE.Create('Q', []).Test(''));
  writeln(TFLRE.Create('.Q', []).Test('a'));
  writeln(TFLRE.Create('QQ', []).Test('Q'));
  writeln(TFLRE.Create('[Q]Q{}', []).Test('Q{}'));
benibela commented 7 years ago

This however is FALSE:

TFLRE.Create('Q\{\}', []).Test('Q{}')
BeRo1985 commented 7 years ago

Should be fixed now :)