I need regex which validates UAE mobile phone number like
+9710501234566 or
+971 (050) (123 4566)
Currently I am using
^(\+971[\s]{0,1}[\-]{0,1}[\s]{0,1}|[\s]{0,1}0)(5[056]{1})[\s]{0,1}[\-]{0,1}[\s]{0,1}[1-9]{1}[0-9]{6}$
Could you help me please? I'm not really good with regular expressions...