flre icon indicating copy to clipboard operation
flre copied to clipboard

minimum length of subsequent +

Open benibela opened this issue 3 years ago • 1 comments

Subsequent + imply a minimal length of the string.

These match, but should not:

 writeln(TFLRE.Create('^(?:\d+\d+\d+)$', []).Find('12'));
 writeln(TFLRE.Create('^(?:\d+\d+\p{Nd}\d+)$', []).Find('123'));

benibela avatar May 08 '21 14:05 benibela