I have this phone number: +44 (0) 1234 123456
which the following regex is attempting to validate, but fails:
var regexPhone = new Regex(@"^(\+)?([0-9\s\-])*$");
Can somebody tell me why it's failing? Is it possible to change this so that it will validate the number above?