I got this regular expression for validating phone number
/^(\+)?[\d\s\-\(\)]+$/
This validates most of the phone numbers except -
+01 (555 236 4960
here the closing brace is missing but it does not validate this. What should be changed in the existing regex so that it matches the closing brace as well