Giter Club home page Giter Club logo

name-parser's People

Contributors

codeduck42 avatar estringana avatar francislavoie avatar joeynovak avatar lexmark-haputman avatar udlobster avatar wyrfel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

name-parser's Issues

UTF-8 encoding issue

If you paste name like this 'Ren\xE9e Osborne', parse() will accept this input, but it will trigger an Error:
Error: Return value of TheIconic\NameParser\Part\AbstractPart::camelcase() must be of the type string, null returned

To prevent this I'm using ...->parse(utf8_encode($nameString));, but you should probably cover this issue in your repo.

Overriding or appending to arrays (such as salutations)

This library is amazing! Thanks so much for providing it!

It's the best one I've found.

I was wondering if there is an easy way to initialize the library with configurable settings, such as if I want to change the salutations that I see in https://github.com/theiconic/name-parser/blob/master/src/Language/English.php

E.g. I may want to add "Prof." as a salutation.

Or maybe there are occasions where I'd want to customize the other constant arrays there.

Other than forking your repo and editing the code, I haven't figured it out yet.

Thanks again!

Output in vCard (RFC6350) matching form

According to this question I really would appreciate to get a feature solving my needs.
My idea is, that the return of "vCard-function" returns an array with key is vCard property name and value is name (part).
Steps:

  1. Try to figure out whether it´s a company or a person.
    From my point of view only a language related list of key words (user extendable) can solve this.
    If this matches, than return 'FN' and 'ORG' containing the name string as befor.
  2. If the name string is obviously not a company name, then try to splitt it into its components
  3. Rearrange components and return them as 'FN', 'N' or maybe 'NICKNAME'.

Here is my attempt from last night (draft):

    /**
     * get an array of name properties with vCard property as key
     *
     * @param string $realname
     * @return array
     */
    public function getNameProperties(string $realName)
    {
        $nameParts = explode(',', $realName);                       // "lastname, firstname"
        if (count($nameParts) == 2) {                               // it`s a person
            $nameParts  = $this->parser->parse($realName);
            $salutation = $nameParts->getSalutation();
            $firstName  = $nameParts->getFirstname();
            $lastName   = $nameParts->getLastname();
            $middleName = $nameParts->getMiddlename();
            $nickName   = $nameParts->getNickname();
            $initials   = $nameParts->getInitials();
            $suffix     = $nameParts->getSuffix();
            if (!empty($middleName) && empty($initials)) {
                $additionalName = $middleName;
            } elseif (empty($middleName) && !empty($initials)) {
                $additionalName = $initials;
            } elseif (empty($middleName) && empty($initials)) {
                $additionalName = '';
            } else {
                $additionalName = implode(',', [$middleName, $initials]);
            }
            $names = implode(';', [$lastName, $firstName, $additionalName, $salutation, $suffix]);
            $fullName = implode(' ', [$salutation, $firstName, $additionalName, $lastName]);
            if (!empty($suffix)) {
                $fullName = $fullName .', '. $suffix;
            }
            $fullName = preg_replace('/\s+/', ' ', $fullName);
            $company = '';
        } else {                                                    // it`s a company
            $names = '';
            $nickName = '';
            $fullName = $realName;
            $company = $realName;
        }

        return [
            'N'        => $names,
            'FN'       => $fullName,
            'NICKNAME' => $nickName,
            'ORG'      => $company,
        ];
    }

Fails to parse name with lastname first and middlename last

The test case:

            [
                'Smith, John Eric',
                [
                    'lastname' => 'Smith',
                    'firstname' => 'John',
                    'middlename' => 'Eric',
                ]
            ]

It doesn't parse Eric as a part, it gets skipped.

I tried making a fix, but gave up after a bit. First, I noticed that the counts of parts in MiddlenameMapper is 2, i.e. ["John", "Eric"] so the first condition there makes it quit out.

I changed that to check to < 2 to get further. Next, it fails in the mapFrom loop because $k = $start; $k < $length - 1; $k++ becomes $k = 0; 0 < 1 so it only does one iteration and misses the Eric part.

Trying to make that loop not miss the last part, but obviously that will make it fail for every other test case, so I gave up there.

Any idea how this case could be supported? My initial thought is the fact that Lastname was already parsed should be passed in to MiddlenameMapper, so it knows to not skip the last part, but I'm not sure how that information should be passed down the line.

Minor Bug in resolving full name if suffix matches a salutation

The following Name: "PAUL M LEWIS MR"

returns the following

Array
(
    [0] => PAUL
    [1] => TheIconic\NameParser\Part\Initial Object
        (
            [value:protected] => M
        )

    [2] => LEWIS
    [3] => TheIconic\NameParser\Part\Salutation Object
        (
            [normalized:protected] => Mr.
            [value:protected] => MR
        )

)

making this break and getFirstname and getLastName returns nothing.

the issue seems to be the following line
https://github.com/theiconic/name-parser/blob/master/src/Language/English.php#L41

this probably going to happen with any of the salutations if they come at the end.

Edit:

Another Example:

"SUJAN MASTER"
"JAMES J MA"
"PETER K MA"

Surname Prefix

Iconic parser correctly parse a name in this format (name surname) example:
Giulio Di Marco -> name = Giulio surname = Di Marco

but when the order of name and surname is inverted (surname name) like:

Di Marco Giulio -> name = Di surname = Marco Giulio
The problem seems to be the prefix in the surname.

Any fix ?

Issue with initials before and after firstname

I wanted to use this library for cleanup of publication authors and map them to a common format like

$name->getLastname()).', '.$name->getFirstname() . ' ' . $name->getMiddlename() . ' ' . $name->getInitials())

This works flawlessly for barely every name. But as my own second given name is my primary one I often don't spell out my first one, like:
Schuler, J. Peter M.
which results in

Array
(
    [firstname] => Peter
    [initials] => J. M.
    [lastname] => Schuler
)

and thus I can't retrieve the correct order of names.

I understand that this is a quite special case, as Germany is one of the few countries were multiple firstnames are possible as well as middle names and where firstnames can be used. Additionally up until a few years ago there was a concept of primary firstname which in my case is/was my second one, thus that kind of writing.

Currently I don't understand all of the parsing, but might supply a pull request if I get this to work while still fulfilling the other test cases.

Lastname Prefix not recognised if no first name

Input: Vincent Van Gogh
Expected: Vincent van Gogh
Actual: Vincent van Gogh

Input: Mr Vincent Van Gogh
Expected: Mr Vincent van Gogh
Actual: Mr. Vincent van Gogh

Input: Mr Van Gogh
Expected: Mr van Gogh
Actual: Mr. Van Gogh

I would have expected this to be detected as a salutation and lastname.

Nickname after complete name means last name is parsed as middle name

If the nickname is after the complete name, the last name is marked as the middle name (and no last name is marked).

Charles Dixon (20th century) is parsed as:

TheIconic\NameParser\Name Object
(
    [parts:protected] => Array
        (
            [0] => TheIconic\NameParser\Part\Firstname Object
                (
                    [value:protected] => Charles
                )

            [1] => TheIconic\NameParser\Part\Middlename Object
                (
                    [value:protected] => Dixon
                )

            [2] => TheIconic\NameParser\Part\Nickname Object
                (
                    [value:protected] => 20th
                )

            [3] => TheIconic\NameParser\Part\Nickname Object
                (
                    [value:protected] => century
                )

        )

)

Capitalized names have strange behavior

Found some bugs having to do with capitalized names and multiple middle names. Sharing some examples here, it seems the initials get incorporated somehow.

Names for testing:

  • SOFIA GARCIA DE LA MANCHA
  • DA LAT
  • JUANITA MARIA DE SUR
  • Garcia Marques, Gabriel

The last example should be listed as "Last, First" so "Gabriel" should just be the first name and "Garcia Marques" should be listed as the last name.

Output:

(
    [firstname] => Sofia
    [middlename] => Garcia
    [initials] => D E L A
    [lastname] => Mancha
)
(
    [firstname] => D
    [initials] => A
    [lastname] => Lat
)
(
    [firstname] => Juanita
    [middlename] => Maria
    [initials] => D E
    [lastname] => Sur
)
(
    [firstname] => Garcia Gabriel
    [lastname] => Marques
)
<?php

require_once __DIR__ . '/vendor/autoload.php';

$parser = new TheIconic\NameParser\Parser();
$namesToTest = array( 'SOFIA GARCIA DE LA MANCHA', 'DA LAT', 'JUANITA MARIA DE SUR', 'Garcia Marques, Gabriel' );

foreach ( $namesToTest as $input ) {

    $name = $parser->parse( $input );
    echo $name->getSalutation();
    echo $name->getFirstname();
    echo $name->getLastname();
    echo $name->getMiddlename();
    echo $name->getNickname();
    echo $name->getInitials();
    echo $name->getSuffix();

    print_r( $name->getAll() );

    echo $name;
}

Prefixes do not get recognized

While adding the Dutch language the van ’t last name prefix could not get detected.

Adding it to a new language's suffixes will not detect it either, so this has something to do with the parsing internals.

Did add a test in draft PR #35

Test data

Expected: Charlotte van ’t Wout

Actual: Charlotte Van ’T Wout

Multibyte special character messes up initials

We parsed the author name from a page, where the input name is © Pavel Voinau.

Expected result

not return an initials, return null as initials

Actual result

When dumping the value, name-parser exports "Â ©"

image

How to fix

  • make initial parser multibyte safe
  • do not parse copyright sign

Lastname is one of the recognised prefixes

Thanks for your work on this library - much appreciated.

We had a failure today for "yumeng du" as a name.
Looking at the parts array, the 'du' is not ascribed to a part.
I'm guessing that this is because it's one of the recognised prefixes?

[Feature request] Be able to access the lastname prefix + lastname separately

I really like how the name-parser can recognise the lastname prefix correctly. Now I would like to be able to get this prefix and the lastname separately.
This could be a setting (maybe related to the language setting, where in Dutch the lastname prefix is a separate part of the name (and for example sorting goes by last name, without the prefix).)

Example:

Frank van Delft (Dutch name), is recognised as:

TheIconic\NameParser\Name Object
(
    [parts:protected] => Array
        (
            [0] => TheIconic\NameParser\Part\Firstname Object
                (
                    [value:protected] => Frank
                )

            [1] => TheIconic\NameParser\Part\LastnamePrefix Object
                (
                    [normalized:protected] => van
                    [value:protected] => Van
                )

            [2] => TheIconic\NameParser\Part\Lastname Object
                (
                    [value:protected] => Delft
                )

        )

)

Doing:

echo $name->getFirstname() . "\n";
echo $name->getLastnamePrefix() . "\n";
echo $name->getLastname() . "\n";

Gives:

Frank
van
Delft

Is this still maintained?

We find this library useful but there are some things we would like to fix / fixes by others we would like to use. These are mostly in the open PR queue but it looks like the last commit was in 2019.

Are you still maintaining this? Interested in co-maintainers? Happy for this to be forked?

Support Spanish-language names

I see support for German, is there anyone working on adding Spanish? Often there are multiple surnames:

Juan de Jesús López Ortíz

GIVENNAME: "Juan"SURNAME: "de Jesús"SURNAME: "López"SURNAME: "Ortíz"

José Guadalupe Jiménez Montoya

GIVENNAME: "José"
GIVENNAME: "Guadalupe"
SURNAME: "Jiménez"
SURNAME: "Montoya"

I'm not sure if this library can support that, but figured I'd ask.

Issue with parsing Vietnamese names

Hello there,

I have a name like this:

Nguyễn Quốc Thái

After parsing, the fullname I get there was "NguyễN QuốC TháI", you can notice how the cases are messed up.

One more thing is that Vietnamese names are written like this: Lastname MiddleName Firstname, how should this be handled?

Last, First, Suffix pattern is not parsed properly

One common (if slightly archaic) way of listing names is as follows:

Lastname, Firstname (optional middle initial or name), Suffix

for example:

Tiptree, James, Jr.
which the parser parses as:

[
lastname => string (13) "Tiptree James"
suffix => string (2) "Jr"
]

and

Miller, Walter M., Jr.
which the parser parses as:

[
firstname => string (6) "Walter"
lastname => string (9) "Miller M."
suffix => string (2) "Jr"
]

Interestingly, if you remove the second comma, the names behave differently.

Tiptree, James Jr. still fails (it drops the suffix):

[
firstname => string (5) "James"
lastname => string (7) "Tiptree"
]

Miller, Walter M. Jr. correctly parses into firstname/initial/lastname/suffix, as shown:

[
firstname => string (6) "Walter"
lastname => string (6) "Miller"
initials => string (2) "M."
suffix => string (2) "Jr"
]

So, definitely a few problems to fix here!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.