I am trying to write a regular expression to handle phone number which starts with \"0\" followed by \"9\" and 9 digits which can be anything within 0-9.
-(BOOL)
I would go with
(0|۰)(9|۹)(\d|[dummy]){9} //<-- \d being any digit
Replace dummy with the numbers of the alphabet you want to support
dummy