Kevin Pfeiffer <[EMAIL PROTECTED]> wrote:
 
: What I came up with (by trying instead of just asking):  ;-)
: 
: # removes leading and trailing quote marks
: s/^"|"$//g foreach @pairs;

    It might be more efficient to use two statements like the
faq does with leading and trailing space.

foreach ( @pairs ) {
    s/^"//;
    s/"$//;
}


HTH,

Charles K. Clarkson
-- 
Head Bottle Washer,
Clarkson Energy Homes, Inc.
Mobile Home Specialists
254 968-8328



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to