TIMTOWTDI
$string = "Jacko";
print preg_replace('/.$/', '', $string);
---
Scott Hurring
Systems Programmer
EAC Corporation
[EMAIL PROTECTED]
Voice: 201-462-2149
Fax: 201-288-1515
> -----Original Message-----
> From: Ed Gorski [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 28, 2002 9:41 AM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: [PHP] How can I remove the last character from a one line
> file?
>
>
> Try:
>
> $string="Jacko";
> $string=substr($string,0,(strlen($string)-1));
> echo $string;
>
> ed
>
> At 09:35 AM 5/28/2002 -0400, [EMAIL PROTECTED] wrote:
> >Hi all,
> >
> > How can I remove the last character from a one line file?
> > i.e. I need to change Jacko to Jack
> >
> >
> >I would really appreciate a response on this!
> >
> >Thank you!
> >Dave
> >
> >--
> >PHP General Mailing List (http://www.php.net/)
> >To unsubscribe, visit: http://www.php.net/unsub.php
>
> ####################################
> Edmund Gorski
> Programmer / Analyst
> WWW Coordinator Dept. @ District Office
> 727-341-3181
> ####################################
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php