lms-verify icon indicating copy to clipboard operation
lms-verify copied to clipboard

add and modify the non-greedy

Open CuiZewen opened this issue 5 years ago • 0 comments

In the past, there is only greedy quantifiers(.) , so i add the lazy quantifiers(.?)

The first tries first to repeat then backtracks to following pattern, the second tries first the following pattern then backtracks to repeat.

for example on the string "abab" a.b will match "abab", a.?b will match only the starting "ab" :)

CuiZewen avatar Jun 10 '20 08:06 CuiZewen