Re: MARC::Record::update_leader()

2003-11-21 Thread Ben Soares
Hey! It does too! I'm not sure what I was doing before but I can't replicate it now... I must have dreamed it. Anyway this is just the behaviour that's required -- thanks! Ben On Wed, 19 November, 2003 17:14, Ed Summers wrote: > On Wed, Nov 19, 2003 at 05:00:53PM +, Ben Soares wrote: >

GoogleSearch on Active State

2003-11-21 Thread Edward Iglesias
Greetings All, I am trying to download the GoogleSearch module for Perl from ASPN C:\Perl\eg>ppm install GoogleSearch returns Error: PPD for 'GoogleSearch.ppd' could not be found. I am following the directions on http://aspn.activestate.com/ASPN/WebServices/Google Any ideas? Edward Igle

First alphanumeric character

2003-11-21 Thread Arnold, Mark D
I suppose this should be easy, but I can't seem to figure it out. How would I grab the first alphanumeric character of a title (ignoring quotes or other punctuation)? Mark Arnold SMSU Libraries Southwest Missouri State University Springfield, Missouri

RE: First alphanumeric character

2003-11-21 Thread Brian Cassidy
It's Friday, so I may be wrong but... $_ = '__---*&^Test'; /([a-z0-9])/i; print $1; gives me: T -Original Message- From: Arnold, Mark D [mailto:[EMAIL PROTECTED] Sent: Friday, November 21, 2003 2:53 PM To: [EMAIL PROTECTED] Subject: First alphanumeric character I suppose this should be

Re: First alphanumeric character

2003-11-21 Thread Chuck Bearden
On Fri, Nov 21, 2003 at 12:53:17PM -0600, Arnold, Mark D wrote: > I suppose this should be easy, but I can't seem to figure it out. How > would I grab the first alphanumeric character of a title (ignoring > quotes or other punctuation)? It's been a while since I've coded Perl, but I think this wou

RE: First alphanumeric character

2003-11-21 Thread Arnold, Mark D
Thanks. This worked. I actually had most of it worked out but was just feeding it the wrong information. I'm also blaming it on Friday. -mark- -Original Message- From: Brian Cassidy [mailto:[EMAIL PROTECTED] Sent: Friday, November 21, 2003 1:00 PM To: Arnold, Mark D; [EMAIL PROTECTED] Su