On Wed, 24 Nov 2004 15:26:44 -0300, Pablo D Marotta
<[EMAIL PROTECTED]> wrote:
> Hi there...
> I need to get a procedure able to do this:
> 
> 1) Receive a string. For example: "name age address location".
> 
> 2) Process that string, inserting "comas" between the words in the middle. For
> example: "name,age,address,location". Itīs important that the comas must be
> inserted after the first word, and before the last one.
> 
> 3) Return that string.

split a string on spaces.

   http://www.php.net/explode

join it again with commas

   http://lv.php.net/implode

function commaList($input) {
  return implode(',', explode(' ', $input));
}

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to