Basically I am looking for a regular expression for phone numbers.
Inputs can be:
009133434343443434
+92333232323232
0223323232
0345*
021*
What I have tried
^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$
Maximum number of characters in my field can be 20 and least number of fields can be 3 but by the above reg ex i am unable to find appropriate results.
*
can only come in end
+
can only come at the start of string.