Skip to content

First Name is a Known Title #21

@Kaotic3

Description

@Kaotic3

I commented on issue #20 - but my issue was slightly different.

Within the list is "Junior" - which in my data at least is also a first name.

I saw the fix you made with the enum Prefer, I wondered whether you were considering the same for the Title? So we could have a Prefer.FirstOverTitle?

It is actually an easy fix on user end, so I wouldn't feel any urgency, just be nice to set a flag for it.

if (testName.Title != "" && testName.First == "")
    {
        sb.Append("" + "þ" + testName.Title + "þ" + testName.Middle + "þ" + testName.Last + "þ" + testName.Suffix + Environment.NewLine);
    }
    else
    {
        sb.Append(testName.Title + "þ" + testName.First + "þ" + testName.Middle + "þ" + testName.Last + "þ" + testName.Suffix + Environment.NewLine);
    }

Nice tool btw very good and I have tried a few of these and written a couple myself - variation is just a killer with names.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions