RE: Using as_string() in Marc::batch

2004-02-25 Thread Holly Bravender
I don't want to subscribe to this list. Please take me off. Thanks Holly Bravender Reference & Instruction Librarian Paul V. Galvin Library Illinois Institute of Technology 35 W. 33rd Street Chicago, IL 60616 www.gl.iit.edu (312) 567-3373 [EMAIL PROTECTED] -Original Message- From:

Re: Using as_string() in Marc::batch

2004-02-25 Thread Andy Lester
> I'm using as_string() in Marc::Batch to get 650 fields and mash all the > subfields together so I can push them into a database. Works great, but > what I'd really like to do is have fields such as: > > "Health Services Canada." > > appear as > > "Health Services -- Canada." Well, it's MARC:

Re: Using as_string() in Marc::batch

2004-02-25 Thread David Christensen
That might be something that could go into MARC::Descriptions another hash element to indicate punctuation. Then MARC::Field wouldn't have to worry about it :-) as_string() could check if MARC::Descriptions is available, and if so add any available punctuation. If not, just do it the cu

Re: Using as_string() in Marc::batch

2004-02-25 Thread Andy Lester
> as_string() could check if MARC::Descriptions is available, and if so add any > available punctuation. If not, just do it the current way? > > I'm willing to tweak up MARC::Descriptions if someone can point me to a > "proper punctuation" guide. Then MARC::Record will be relying on MARC::

RE: Using as_string() in Marc::batch

2004-02-25 Thread Sperr, Edwin
>I'm using as_string() in Marc::Batch to get 650 fields and mash all the subfields together so I can push them into a database. >Works great, but what I'd really like to do is have fields such as: >"Health Services Canada." >appear as >"Health Services -- Canada." For the time being, I've dec