in reply to parenthesis regex

I believe you will find that the warning is because $Delay_id is undefined.
Or it is an warning elswhere in your code and unrelated, there is nothing structurally wrong with your regex.
Although I would have used /\(\d{2,3}/ or /\(\d\d\d?/ instead of 2 separate expressions


-pete
"Worry is like a rocking chair. It gives you something to do, but it doesn't get you anywhere."

Replies are listed 'Best First'.
Re^2: parenthesis regex
by steph_bow (Pilgrim) on Jun 26, 2008 at 08:43 UTC

    Thanks a lot for youe help, guys !

    I have just found the source of the problem

    It was because I had values such as (8 so there were not selected by the regex hence the problem

    That's really nice of you all, thanks a lot for your help !