Thanks John,

        You and 4 others (3 private direct replies) all gave me the same
suggestion.  I have no idea why I never think to use a regex...  Appreciate
the thought!

-Dan Joseph

> -----Original Message-----
> From: CPT John W. Holmes [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 24, 2003 1:44 PM
> To: Dan Joseph; [EMAIL PROTECTED]
> Subject: Re: [PHP] just looking for some opinions...
>
>
> > Let's say I have a number: 12800001924
> >
> > The rules call for removing "1280+", meaning remove 128 and all 0's that
> > come after it, until you run into another number.
> >
> > In the end, it would leave 1924, and everything else on the beginning
> would
> > be gone.
>
> $new_number = preg_replace('/^1280+/','',$number);
>
> ---John Holmes...
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to