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
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
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