Closed
Description
Parsing the name "Van Maximilian Carlson" fails to recognize any part as last name.
$ python tests.py "Van Maximilian Carlson"
<HumanName : [
title: ''
first: 'Van Maximilian Carlson'
middle: ''
last: ''
suffix: ''
nickname: ''
]>
I think I would expect this case to be treated like when there's two words, the first starting with a prefix, when the prefix is considered the first name, something like:
<HumanName : [
title: ''
first: 'Van'
middle: 'Maximilian'
last: 'Carlson'
suffix: ''
nickname: ''
]>
But it might be something related to that specific prefix, as "Van" can often be a name.
I fixed locally by removing "van" from the prefixes config list, but I wanted to raise this issue in case it's worth it to address in the project.