Hello everybody
I need mobile number validation. Number "09" is fixed at the beginning. And it is followed by other numbers from 0 to 9.
When I use this reg exp: "/^([09]+[0-9])$/" It fails
But when I use this one: "/^([09]+[0-9])/" it works
What's the problem? Is it okay to use it without "$"?












