Here is the regex for Ethiopian Phone Number. For my fellow Ethiopian developers ;)
phoneExp = /^(^\+251|^251|^0)?9\d{8}$/;
It matches the following (restrict any unwanted character in start and end position)
- +251912345678
- 251912345678
- 0912345678
- 912345678
You can test it on this site regexr.