^.?$|^(..+?)\1+$
<answer>
Matches strings of any character repeated a non-prime number of times
You must log in or register to comment.
Yes, the first one matches only 2 more characters while the second matches 1 or more. Also the +? is a lazy quantifier so it will consume as little as possible.
Ah, didn’t know +? was lazy, thanks
I thought, the +? was going to be a syntax error. 🙃
I was like, why specify “one or more” and then make it optional? Isn’t that just .*?