79692649

Date: 2025-07-07 09:55:09
Score: 0.5
Natty:
Report link

Try using this pattern:

^[a-zA-Z-—’'` ]{1,250}$

Key part: a-zA-Z

Reason: as stated by Dmitrii Bychenko, A-z pattern includes additional ASCII characters, you need an explicit a-z + A-Z.

Test:

John // match
John[ // no match
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: biggujo