Separating authors

2005-05-31 Thread Saiful Amin
Hi all, Here's another problem I'm having with separating authors. The MARC data I'm trying to clean has all the authors in field 100. I want to move added authors to 700. I've tried the following script which deletes the 100 fields without creating 100/700s: ##

Re: Separating index terms

2005-05-31 Thread Saiful Amin
Thank you everyone for so many ideas and also for the suggestions. Paul's trick was cool and very simple, which makes you think "I should've done it myself". Thanks so much again. Best regards, Saiful On 5/31/05, Brad Baxter <[EMAIL PROTECTED]> wrote: > > On Tue, 31 May 2005 [EMAIL PROTECTED]

RE: Separating index terms

2005-05-31 Thread Brad Baxter
On Tue, 31 May 2005 [EMAIL PROTECTED] wrote: > Amin, > > This should do the trick: > > my @keywords = split(/[<>]+/,$keywords ); > > Ian Or, my @keywords = $keywords =~ /<([^>]+)>/g; Regards, Brad

RE: Separating index terms

2005-05-31 Thread Ian . Hamilton
Amin, This should do the trick: my @keywords = split(/[<>]+/,$keywords ); Ian _ Ian Hamilton Library Systems Administrator European Commission - Directorate General for Education and Culture EAC C4 - Central Library Unit * +32-2-295.24.60 (direct p

Re: Separating index terms

2005-05-31 Thread William Wueppelmann
Saiful Amin wrote: Hi all, I'm doing some data cleaning for MARC data. The MARC export I got from a legacy system has field 653 in following format: $a I want to create repeatable field separating the individual index terms. my $tag_653 = $record->field('653'); $record->delete_field('653'

Re: Separating index terms

2005-05-31 Thread Paul POULAIN
Saiful Amin a écrit : Hi all, I'm doing some data cleaning for MARC data. The MARC export I got from a legacy system has field 653 in following format: $a I want to create repeatable field separating the individual index terms. my $tag_653 = $record->field('653'); $record->delete_field('653

Separating index terms

2005-05-31 Thread Saiful Amin
Hi all, I'm doing some data cleaning for MARC data. The MARC export I got from a legacy system has field 653 in following format: $a I want to create repeatable field separating the individual index terms. my $tag_653 = $record->field('653'); $record->delete_field('653'); my $keywords = $tag_