Does anyone have a script that will turn a name stored in one field SURNAME, FIRSTNAME MIDDLE Into 3 fields?
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@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@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
participants (3)
-
Erik Lewis -
Kyle Hall -
LAURENT Henri-Damien