Re: [PHP] Silly regex giveing me a hard time

2005-10-16 Thread Anas Mughal
Try this: ^[ ]*[0-9]*[ ]* This will also strip out any blank spaces at the beginning of the line. -- Anas Mughal On 10/16/05, Dotan Cohen <[EMAIL PROTECTED]> wrote: > > I have a list like this: > 235 Some info > 12323 other 5 things > No number on this line! > 43 something or other > > I nee

[PHP] Silly regex giveing me a hard time

2005-10-16 Thread Dotan Cohen
I have a list like this: 235 Some info 12323 other 5 things No number on this line! 43 something or other I need to remove the first number from each line, so that I will get this: Some info other 5 things No number on this line! something or other So I tried: $data=preg_replace("//n[ ]*[