[Koha] Name conversion

Kyle Hall kyle.m.hall at gmail.com
Wed Sep 30 03:14:30 NZDT 2009


Where is this data stored? It's pretty trivial to do the splitting in perl.

$name = "SURNAME, FIRSTNAME MIDDLE";
my ( $surname, @rest ) = split(/, /, $name );
my ( $firstname, $middlename ) = split( / /, @rest );

Kyle

http://www.kylehall.info
Information Technology
Crawford County Federated Library System ( http://www.ccfls.org )




On Tue, Sep 29, 2009 at 10:08 AM, Erik Lewis <elewis at ngrl.org> wrote:
> Does anyone have a script that will turn a name stored in one field
>
> SURNAME, FIRSTNAME MIDDLE
>
> Into 3 fields?
>
>
> _______________________________________________
> Koha mailing list
> Koha at lists.katipo.co.nz
> http://lists.katipo.co.nz/mailman/listinfo/koha
>


More information about the Koha mailing list