Re: Construct listbox with CGI [Answer mangled by groups-beta.google.com]

From: Joe Smith (joe_at_inwap.com)
Date: 12/31/04


Date: Thu, 30 Dec 2004 16:49:50 -0800
To:  groups-abuse@google.com

http://groups-beta.google.com/group/comp.lang.perl.misc/msg/66eb83d49e4cee78?dmode=source

ioneabu@yahoo.com commented:
> I wrote
>
> @labels{@values} = @labels
>
> and groups.google.com turned it into:
>
> @labe...@values} = @labels;
> I checked it before posting. I don't know what happened.

There are three other instances of this corruption in Google's
display of your posting:

   From: ione...@yahoo.com
   X-Complaints-To: groups-ab...@google.com
   Complaints-To: groups-ab...@google.com

In other words:
($text_to_display = $original_text) =~ s/(\w+)\w{3}\@/$1...\@/g;

Attempting to change 'johndoe@example.com' to 'john...@example.com'
is the wrong thing to do in this case.

        -Joe