Christopher M Burger wrote at Thu, 13 Mar 2003 22:31:24 -0500:

> I was wondering if anyone could help me.  Here is my question.
> 
> I have a date 03242003 I want it to look like 03/24/2003 how do I do that?
> 

As TMTWTDI, here's a solution with regexes:

$data =~ s,(..)(..)(....),$1/$2/$3,;


Best Wishes,
Janek

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

Reply via email to