[PHP] Lets nock off any numbers at the begging of a string...

2001-02-26 Thread Brandon Orther
Hello, Is there a way to remove the first numbers of a string? Here is an example: $string1 = "12 this is number twelve"; when done: " this is number twelve"; $sting1 = "123 this is number one twenty three" when done: " this is number one twenty three"; Thank you,

Re: [PHP] Lets nock off any numbers at the begging of a string...

2001-02-26 Thread Mark Maggelet
On Mon, 26 Feb 2001 11:57:04 -0800, Brandon Orther ([EMAIL PROTECTED]) wrote: Hello, Is there a way to remove the first numbers of a string? Here is an example: $string1 = "12 this is number twelve"; when done: " this is number twelve"; $sting1 = "123 this is number one twenty three" when