[PHP] Trailing Spaces Problem

2008-07-18 Thread Wei, Alice J.
Hi, I have a code here as the following: ?php $string=1 0 70.208 61.613 1.424 3.689 61.404 0.000 0.000 0.000 0.000 0.000; $data= explode(\t, $string); echo 1: . $data[0] . 2: . $data[1] . 3: . $data[2] . 4: . $data[3] . 5:

Re: [PHP] Trailing Spaces Problem

2008-07-18 Thread Thiago H. Pojda
On Fri, Jul 18, 2008 at 11:41 AM, Wei, Alice J. [EMAIL PROTECTED] wrote: Hi, Is there some way that I can have it so that it can print out: 1: 1 2:0 3: 70.208 4. 61.613 5. 1.424 I tried using \s for trailing spaces, but It all gave me output of everything in the single line. Have I

Re: [PHP] Trailing Spaces Problem

2008-07-18 Thread Peter Ford
Thiago H. Pojda wrote: On Fri, Jul 18, 2008 at 11:41 AM, Wei, Alice J. [EMAIL PROTECTED] wrote: Hi, Is there some way that I can have it so that it can print out: 1: 1 2:0 3: 70.208 4. 61.613 5. 1.424 I tried using \s for trailing spaces, but It all gave me output of everything in the

RE: [PHP] Trailing Spaces Problem

2008-07-18 Thread Wei, Alice J.
@lists.php.net Subject: Re: [PHP] Trailing Spaces Problem Thiago H. Pojda wrote: On Fri, Jul 18, 2008 at 11:41 AM, Wei, Alice J. [EMAIL PROTECTED] wrote: Hi, Is there some way that I can have it so that it can print out: 1: 1 2:0 3: 70.208 4. 61.613 5. 1.424 I tried using \s for trailing