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
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
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
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
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
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
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
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
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
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
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
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 comma' that elu
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
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
[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
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.
Thank you in advance!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.p
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
nal Message-
From: Jacky [mailto:[EMAIL PROTECTED]]
Sent: 11 May 2001 16:24
To: [EMAIL PROTECTED]
Subject: [PHP] split string
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 could be more, but always in this
format that is separated
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
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 could be more, but always in this format that is separated
by "," .
How do I pick each of value in the series and assign it into new vairiable, like from:
$test = 1,2,3;
and assign t
"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
'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]
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
$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: [EMAI
acky" <[EMAIL PROTECTED]>
Date: Thursday, March 29, 2001 5:52 pm
Subject: [PHP] split string value again
> 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
> that I will only get the dma
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
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
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 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
Hi people
If I have value like [EMAIL PROTECTED] stored in a variable. How do I break it up to be
take only the foo.com bit to use that to redirect user back to that URL?
Jack
[EMAIL PROTECTED]
"There is nothing more rewarding than reaching the goal you set for yourself"
29 matches
Mail list logo