Re: [PHP] Split string

2007-05-02 Thread Lester Caine
Jim Lucas wrote: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I need to split the text up to the first space or comma into one string, and the rest of the string into a second. It's the 'first either space or

Re: [PHP] Split string

2007-05-02 Thread Richard Lynch
On Wed, May 2, 2007 4:10 pm, Stut wrote: > Richard Lynch wrote: >> On Wed, May 2, 2007 4:55 am, Lester Caine wrote: >>> Fredrik Thunberg wrote: Lester Caine skrev: > Can someone with a few more working grey cells prompt me with the > correct command to split a string. > > The

Re: [PHP] Split string

2007-05-02 Thread Edward Vermillion
On May 2, 2007, at 4:10 PM, Stut wrote: Richard Lynch wrote: On Wed, May 2, 2007 4:55 am, Lester Caine wrote: Fredrik Thunberg wrote: Lester Caine skrev: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I ne

Re: [PHP] Split string

2007-05-02 Thread Jim Lucas
Stut wrote: Richard Lynch wrote: On Wed, May 2, 2007 4:55 am, Lester Caine wrote: Fredrik Thunberg wrote: Lester Caine skrev: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I need to split the text up to the

Re: [PHP] Split string

2007-05-02 Thread Stut
Richard Lynch wrote: On Wed, May 2, 2007 4:55 am, Lester Caine wrote: Fredrik Thunberg wrote: Lester Caine skrev: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I need to split the text up to the first space

Re: [PHP] Split string

2007-05-02 Thread Richard Lynch
On Wed, May 2, 2007 4:55 am, Lester Caine wrote: > Fredrik Thunberg wrote: >> Lester Caine skrev: >>> Can someone with a few more working grey cells prompt me with the >>> correct command to split a string. >>> >>> The entered data is names, but I need to split the text up to the >>> first space

Re: [PHP] Split string

2007-05-02 Thread Richard Lynch
On Wed, May 2, 2007 3:55 am, Lester Caine wrote: > Can someone with a few more working grey cells prompt me with the > correct > command to split a string. > > The entered data is names, but I need to split the text up to the > first space > or comma into one string, and the rest of the string in

Re: [PHP] Split string

2007-05-02 Thread Stut
Stut wrote: Alternatively you could use split to break the string into the two parts, which is probably more efficient... list($part1, $part2) = split('[ ,]', $myString); Oops, this should have a third parameter... list($part1, $part2) = split('[ ,]', $myString, 2); -Stut -- PHP General Ma

Re: [PHP] Split string

2007-05-02 Thread Stut
Fredrik Thunberg wrote: Lester Caine skrev: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I need to split the text up to the first space or comma into one string, and the rest of the string into a second. I

Re: [PHP] Split string

2007-05-02 Thread Lester Caine
Fredrik Thunberg wrote: Lester Caine skrev: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I need to split the text up to the first space or comma into one string, and the rest of the string into a second. I

Re: [PHP] Split string

2007-05-02 Thread Fredrik Thunberg
Lester Caine skrev: Can someone with a few more working grey cells prompt me with the correct command to split a string. The entered data is names, but I need to split the text up to the first space or comma into one string, and the rest of the string into a second. It's the 'first either spa

Re: [PHP] ? Split string into smaller chunks

2005-12-19 Thread David Grant
Labunski wrote: > I need to split a long string into smaler chunks (an array), as a separator > using every third \n (and not just every \n). > I could use 'explode', but then it would produce too many chunks. php.net/preg_split Cheers, David -- David Grant http://www.grant.org.uk/ -- PHP Ge

Re: [PHP] ? Split string into smaller chunks

2005-12-19 Thread Anas Mughal
Split them using explode and then combine the ones you need to combined. Hope this helps. -- Anas Mughal On 12/19/05, Labunski <[EMAIL PROTECTED]> wrote: > > I need to split a long string into smaler chunks (an array), as a > separator > using every third \n (and not just every \n). > I could us

RE: [PHP] ? Split string into smaller chunks

2005-12-19 Thread Jay Blanchard
[snip] I need to split a long string into smaler chunks (an array), as a separator using every third \n (and not just every \n). I could use 'explode', but then it would produce too many chunks. [/snip] http://us2.php.net/manual/en/function.chunk-split.php -- PHP General Mailing List (http://ww

Re: [PHP] split string

2001-05-11 Thread Jason Stechschulte
On Fri, May 11, 2001 at 10:24:02AM -0500, Jacky wrote: > I got series of string value like this 1,2,3. And the seires are > dynamic dynamaic, which means it is not always 1,2,3 but could be > more, but always in this format that is separated by "," . How do I > pick each of value in the series a

RE: [PHP] split string

2001-05-11 Thread Taylor, Stewart
$test = "1,2,3"; $arrTest = explode(",",$test); foreach($arrTest as $k=>$v) { $vname = "test".(!$k?"":$k); // global for use later global $$vname; $GLOBALS[$vname] = $v; } // now global $test, $test1, $test2 exist etc -Original Message- From: Jacky [mailto:[EMAIL PROTECTED

Re: [PHP] split string

2001-05-10 Thread Jack Dempsey
http://www.php.net/manual/en/function.explode.php explode on the comma... you could use while loop and variable variables to take care of the naming... -jack Jacky wrote: > > I got series of string value like this 1,2,3. And the seires are dynamaic, which >means it is not always 1,2,3 but co

Re: [PHP] split string value again

2001-03-29 Thread Steve Werby
"Jacky" <[EMAIL PROTECTED]> wrote: > I have a vairable that stores email address value. I need to break it so > that I will only get the dmain name bit to store in another variable so > that > I can redirect user to that domain, like if user email is [EMAIL PROTECTED] > then I would like to break

Re: [PHP] split string value again

2001-03-29 Thread [EMAIL PROTECTED]
'Jacky' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, March 29, 2001 3:51 AM Subject: RE: [PHP] split string value again > $addr = "mailto:[EMAIL PROTECTED]; > > $splitaddr = explode("@",$addr); > > resulting in $splitaddr[0]

Re: [PHP] split string value again

2001-03-29 Thread elias
try this snippet: ""Jacky"" <[EMAIL PROTECTED]> wrote in message 009301c0b8a2$e856f6c0$[EMAIL PROTECTED]">news:009301c0b8a2$e856f6c0$[EMAIL PROTECTED]... Hi again have to try again after I have not recieved any advice, I have a vairable that stores email address value. I need to break it so tha

RE: [PHP] split string value again

2001-03-29 Thread Stewart Taylor
$addr = "[EMAIL PROTECTED]"; $splitaddr = explode("@",$addr); resulting in $splitaddr[0] = "test"; $splitaddr[1] = "foo.com"; -Stewart -Original Message- From: Jacky [mailto:[EMAIL PROTECTED]] Sent: 29 March 2001 23:52 To: [EMAIL PROTECTED] Subject: [PHP] split string v

Re: [PHP] split string value again

2001-03-29 Thread dempsejn
"try again" after 20 minutes...give people some time to respond!...anyways, you can explode the variable... list($junk,$domain) = explode("@",$email); checkout http://www.php.net/explode you'll use it a lot -jack - Original Message - From: "Jacky" <[EMAIL PROTECTED]> Date: Thursd

RE: [PHP] split string value again

2001-03-29 Thread Martin Cabrera Diaubalick
Try to use explode and keep the second element of the array Just a quick thought .. - Original Message - From: Jacky <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 30, 2001 12:52 AM Subject: [PHP] split string value again Hi again have to try again after I have not

Re: [PHP] split string value

2001-03-29 Thread Yasuo Ohgaki
Use split('@',$email_address) http://www.php.net/manual/en/function.split.php -- Yasuo Ohgaki ""Jacky"" <[EMAIL PROTECTED]> wrote in message 005a01c0b8a0$453ede00$[EMAIL PROTECTED]">news:005a01c0b8a0$453ede00$[EMAIL PROTECTED]... Hi people If I have value like [EMAIL PROTECTED] stored in a vari