In news: [EMAIL PROTECTED] - Thomas Bachmann wrote :
>> Why don't post an example of your news file too?
>>
>> Joker7 schrieb:
>>> Hi,
>>> I'm using the code below to display news articles-which works great
>>> apart from. I can control the number of articles,but I would like
>>> to add a link to
Why don't post an example of your news file too?
Joker7 schrieb:
Hi,
I'm using the code below to display news articles-which works great apart
from. I can control the number of articles,but I would like to add a link to
the bottom of the page to the un-displayed articles ( nexted 5 articles an
if ($your_string !== ''){
$arr_string = explode(',', $your_string);
$first_part = $arr_string[0];
array_shift($arr_string);
$second_part = implode(',', $arr_string);
}
--
itoctopus - http://www.itoctopus.com
"Lester Caine" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTEC
Look at split() and explode().
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 into a
se
* [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> How would I do this ?
>
> Take this string and return everything between [ ] as an array output doesnt
> have to inlude [ ]
> $rr="thisscritjajsj[ OUT1 ]ajdamsda;sjo;tkpdk[ OUT2 ]sdfmjs[ OUT3 ]dfjlsd";
>
> $a = some function
>
> echo '';
> print_r($a);
>
>
On Tue, 2004-02-17 at 13:01, John Taylor-Johnston wrote:
> $tempauthors = explode("\r\n", $mydata->AuthorList);
> foreach ($tempauthors as $singleauthor)
> # while($tempauthors = each($singleauthor))
> {
> echo "http://www.foo.org$singleauthor\";>$singleauthor ";
> }
First of all, you ar
John, Thanks. It's a question of understanding it. I can get a foreach to work, but my
while doesn't.
>There's no real reason to use while() over foreach(). Why do you think you
>need to use while()?
Rather than ask people to code for me, I'm trying to spend a little extra time to try
and learn
From: "John Taylor-Johnston" <[EMAIL PROTECTED]>
> I can do this, but want to understand how to while it: Or should I?
>
> $tempslices = explode("\r\n", $pizza);
> foreach ($tempslices as $singleslice)
> {
> echo "http://www.foo.org$singleslice\";>$singleslice ";
> }
>
> Still learning :
I can do this, but want to understand how to while it: Or should I?
$tempslices = explode("\r\n", $pizza);
foreach ($tempslices as $singleslice)
{
echo "http://www.foo.org$singleslice\";>$singleslice ";
}
Still learning :)
John Taylor-Johnston wrote:
> Can I while this? Not sure how t
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Garth Dahlstrom) wrote:
> > $sometext2split = "hello world witha lot ofwhitespaces!";
> > $myarray = preg_split ("/\s+/",$sometext2split);
> >
> > you should get
> > $myarray := ['hello', 'world', 'with', 'a', 'lot', 'of', 'whitespa
m: "Garth Dahlstrom" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, July 20, 2001 4:13 PM
Subject: Re: [PHP] Re: split on whitespace, preserving whitespace... (a
rephrase of the question)
> On Fri, 20 Jul 2001 15:34:48 +0200 "Stefan
t;
>
>
>
> [This contanswhite space .][This contanswhite space
> .]
>
>
> Are you running php >= 4.0.5?
>
> jack
> -Original Message-
> From: Garth Dahlstrom [mailto:[EMAIL PROTECTED]]
> Sent: Friday, July 20, 2001 10:06 AM
> To: [EMA
aces!"]
'cause I could spell check based on trimming the entry.
-Garth
Northern.CA ===--
http://www.northern.ca
Canada's Search Engine
>
> But remark: \t (tabs) will also count as whitespace, but not \n and
> \r. See
> docu for more informations
>
> Hope, it
On Fri, 20 Jul 2001 09:32:00 -0400 "Jack Dempsey" wrote:
>
> $text = "This contanswhite space .";
> $matches = preg_split("/(\s+)/",$text,-1, PREG_SPLIT_DELIM_CAPTURE);
> echo implode('',$matches);
Nope that doesn't do it.
here's the test:
echo "[$text][". implode('',$matches)."]";
here
in the text...
>
> best regards
> Stefan Rusterholz, [EMAIL PROTECTED]
>
>
> - Original Message -----
> From: "Stefan Rusterholz" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> Sent: Friday, July 20, 2001 3:34 PM
> Subject
AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: split on whitespace, preserving whitespace...
Uuhmm, I'm sorry. I haven't read it throught to the end. The solution
ist a
bit different:
use preg_replace to replace multiple spaces with single spaces:
$sometext2split = preg_replace("|&q
TED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, July 20, 2001 3:34 PM
Subject: Re: [PHP] Re: split on whitespace, preserving whitespace...
> If you'r using PHP >4 use preg_split. (works also with php 3 >= 3.09)
> see http://www.php.net/manual/e
45 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: [PHP] Re: split on whitespace, preserving whitespace...
> try $wordarr = explode(" ", $string);
mmm... yeah... That's what I had before
(acutally I was using the alias split)...
it does NOT however preserve the areas
of whi
re informations
Hope, it helps
best regards
Stefan Rusterholz, [EMAIL PROTECTED]
- Original Message -
From: "Garth Dahlstrom" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, July 20, 2001 1:44 PM
Subject: [PHP] Re: split on whitespac
> try $wordarr = explode(" ", $string);
mmm... yeah... That's what I had before
(acutally I was using the alias split)...
it does NOT however preserve the areas
of white space.
Instead the target of:
> > $wordsarr = ('This',' ','contans','','white',' ','space',' ','.')
You get:
> > $wo
depends how reliable the format of the string you're splitting is. If they
are all like your examples then ...
foreach ($stuff as $key=>$element)
{ $dummy = explode(" ", $element);
$stuff[$key] = array();
$stuff[$key]["user"] = $dummy[0];
$stuff[$key]["browser"] = $d
21 matches
Mail list logo