At 03:20 PM 11/29/2001 -0800, A. Rivera wrote:
>OK, I have this..
>
>$longdate="Fri November 29, 2001";
>And I want just the November 29, 2001 part.

How about
$longdate =~ /(\w+\s)/;
$longdate =~ s/$1//;

Not too elegant, but it works for this example, I think


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

Reply via email to