Almost – I need to capture the period after the middle initial – some documents contain “Greg, Joseph T.” and the regex won’t find it without the period.
@alin.ferenczi small change to the pattern instead of .{0,1} use \.? . Because . dot literally matches everything except for new line. For instance it will match Greg, John T$ too.