tiny-regex-c icon indicating copy to clipboard operation
tiny-regex-c copied to clipboard

Do not support {n, m} feature.

Open cmtheit opened this issue 2 years ago • 1 comments

Regex is [a-z][a-z0-9]{0, 10}, Match string is "cmtheit", Do not match.

cmtheit avatar Aug 31 '22 09:08 cmtheit

Testing this on https://regex101.com/ Your Regex appears to be broken by the space after the , Instead of: [a-z][a-z0-9]{0, 10} try: [a-z][a-z0-9]{0,10}

mickjc750 avatar Dec 20 '22 04:12 mickjc750