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]
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
rl.org
Subject: Separating index terms
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(&
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'
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
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_