79459229

Date: 2025-02-22 07:48:49
Score: 0.5
Natty:
Report link

Here is the pattern that you are looking for:

[:LetterSpace:]*([:Dot:][:Letter|Space:]*)*

Regex Pattern:

^([a-zA-Z ]+(?:\.[a-zA-Z ]*)*)$

OR, because you are matching only, not capturing:

^[a-zA-Z ]+(\.[a-zA-Z ]*)*$

Regex Demo: https://regex101.com/r/Cha5FW/1

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