You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is wrong and my guess is, it detects comma in the given name and assumes as "LastName, FirstName" format. Although, you have some samples in the github, seems its not parsing correctly.
The text was updated successfully, but these errors were encountered:
I have a raw name that is like,
TERRENCE H. BORING, M.D.
and parsing this with expectations as below:Title: ""
FirstName: TERRENCE
Middle: H.
Lastname: BORING
Suffix: M.D.
But the actual Result is,
Title: ""
FirstName: M.D.
Middle: TERRENCE H.
Lastname: BORING
Suffix: ""
This is wrong and my guess is, it detects comma in the given name and assumes as "LastName, FirstName" format. Although, you have some samples in the github, seems its not parsing correctly.
The text was updated successfully, but these errors were encountered: