in reply to Creating comma-delimited lists
@a = ('this', 'that', 'the other', 'the last thing'); $tmpstring=join(',',@a); $string = "I know about " . $tmpstring . "."; print $string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Creating comma-delimited lists
by BlaisePascal (Monk) on Aug 24, 2000 at 23:26 UTC | |
by mrmick (Curate) on Aug 25, 2000 at 16:49 UTC |