79284710

Date: 2024-12-16 12:44:48
Score: 0.5
Natty:
Report link

+ in regex pattern means more than once. For example, a regex pattern a+ could match aa and aaa.
+ must follow a pattern you want to match at least once. So a single + does't make sense and will give the error nothing to repeat.
If you just want to match a + itself, use \+.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vassiliev