in reply to RE: Re: Creating comma-delimited lists
in thread Creating comma-delimited lists

It FIGURES that I would overlook that. Thank you, BlaisePascal, for spotting it. It's nice comments like yours that will help to keep me on my toes. :-)

Well, in an attempt to redeem myself, here's an oversimplified (and crude)fix:

@a = ('this', 'that', 'the other', 'the last thing'); $lastone=pop(@a); $tmpstring=join(',',@a); $string = "I know about $tmpstring, and $lastone."; print $string;

Mick