byron wise wrote:
> foreach $key (keys %form)  {
>      print DATA "$form{$key}:";  }

You could replace with by

   print DATA join ':', values %form;

if you want. This will also eliminate the trailing colon (since you said
values are *separated* by colons, not *terminated* by colons.

Cheers,
Philip

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to