andgineer / TRegExpr

Regular expressions (regex), pascal.
https://regex.sorokin.engineer/en/latest/
MIT License
174 stars 63 forks source link

Add tests for specific valid regex set #150

Closed SlMaker closed 4 years ago

SlMaker commented 4 years ago

147

SlMaker commented 4 years ago

@andgineer that one should be fine now

SlMaker commented 4 years ago

@Alexey-T for me both regex with [.-] are failing

andgineer commented 4 years ago

([.-]) you have to escape . if you want a dot itself and not meta-char "any symbol" ([\.-])