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
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
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
$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
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
"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: [EMAIL PROTECTED]
Subject: [PHP] split string v
"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
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
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
24 matches
Mail list logo