in reply to Re^2: Oddness with regex quantifiersin thread Oddness with regex quantifiers
$ perl -E'say "aa" =~ /a{1,}/' 1 $ perl -E'say "aa" =~ /a{1,0}/' Can't do {n,m} with n > m in regex; marked by <-- HERE in m/a{1,0} <-- + HERE / at -e line 1. [download]