Skip to content

Handling " - " separators in suffix acronyms #156

Description

@shartzog

I've come across some source data that uses " - " rather than ", " as a delimiter for healthcare providers with multiple credentials. Under these conditions, nameparser breaks down pretty badly. Adding "-" to CONSTANTS.suffix_acronyms corrects the bad behavior for the most part, although I'd still prefer to have the individual suffixes identified as shown in the final "MD, DO, DDS" example so that my name formatting remains consistent in both cases. Any thoughts on how this might be solved holistically?

Example:

>>> import nameparser
>>> from nameparser.config import CONSTANTS
>>> nameparser.HumanName("Steven Hardman, RN - CRNA")
<HumanName : [
        title: ''
        first: 'RN'
        middle: '-'
        last: 'Steven Hardman'
        suffix: 'CRNA'
        nickname: ''
]>
>>> nameparser.HumanName("Steven Hardman, MD - DO - DDS")
<HumanName : [
        title: 'MD'
        first: '-'
        middle: 'DO -'
        last: 'Steven Hardman'
        suffix: 'DDS'
        nickname: ''
]>
>>> _ = CONSTANTS.suffix_acronyms.add("-")
>>> nameparser.HumanName("Steven Hardman, MD - DO - DDS")
<HumanName : [
        title: ''
        first: 'Steven'
        middle: ''
        last: 'Hardman'
        suffix: 'MD - DO - DDS'
        nickname: ''
]>
>>> nameparser.HumanName("Steven Hardman, MD - DO - DDS").suffix_list
['MD - DO - DDS']
>>> nameparser.HumanName("Steven Hardman, MD, DO, DDS").suffix_list
['MD', 'DO', 'DDS']

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Projects

No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions