gonameparts icon indicating copy to clipboard operation
gonameparts copied to clipboard

Takes a full name and splits it into individual name parts

Results 3 gonameparts issues
Sort by recently updated
recently updated
newest added

Hi, nice library. I was running a few test cases... In general most are looking pretty good, however there is one issue I spotted: ``` name := gonameparts.Parse("John A. Smith,...

bug
good first issue

I rewrote too much to solve #7. 1. Stacks are used to identify punctuation marks and letters. But they're never popped. So I should've used queues. 2. Recursion is introduced...