Kotlin port of myanmar-phonenumber to check valid myanmar mobile numbers, get mobile operator's name, sanitize mobile numbers and get mobile network types.
An extensible normalizier allows you to normalize the phone number into a standardized format you want. The default out of the box provides
- Trimming whit spaces, dashes, and decimals
- Converting to English numbers
- Replacing and standardizing to 09
val input = "+၉၅၉၇၈၄၁၂၃၄၅၆"
val normalizer = MyanmarPhoneNumberNormalizer()
val result = normalizer.normalize(input)
print(result) //: 09784123456
You can also use the builder provided to add custom rules. This allows you to create your own standardized format such as using "+959" instead of "09", or converting other languages to English numerals etc.
class NineFiveNineRule : Rule {
private val possibleCases = Regex("(09-)|(\\+959)|(09\\s)|(959)|(09\\.)")
override fun convert(input: String): String {
if (possibleCases.containsMatchIn(input)) {
return input.replaceFirst(possibleCases, "+959")
}
return input
}
}
val builder = MyanmarPhoneNumberNormalizer.Builder()
builder.addRule(NineFiveNineRule())
val input = "09784123456"
val output = builder.build().normalize(input)
print(output) //+959784123456
Check whether a phone number is a valid Myanmar phone number
MyanmarPhoneNumberUtils.isValidMyanmarPhoneNumber("09978412345") //true
MyanmarPhoneNumberUtils.isValidMyanmarPhoneNumber("14155552671") //false
Check which opreator the number is from
MyanmarPhoneNumberUtils.getTelecomOperator("09958412345") //Ooredoo
MyanmarPhoneNumberUtils.getTelecomOperator("09784123456") //Telenor
MyanmarPhoneNumberUtils.getTelecomOperator("09420012345") //MPT
MyanmarPhoneNumberUtils.getTelecomOperator("09690000966") //MyTel
Check which network the numer belongs to
MyanmarPhoneNumberUtils.getNetworkType("09978412345") //GSM
MyanmarPhoneNumberUtils.getNetworkType("09451212123") //WCDMA
MyanmarPhoneNumberUtils.getNetworkType("096355555") //CDMA 450Hz
MyanmarPhoneNumberUtils.getNetworkType("0973123456") //CDMA 800Hz
Extract the list of burmese phone numbers within an input. This is experimental features, so feel free to report bugs if you use it!
val extractor = MyanmarPhoneNumberExtractor()
val input = "၀၉၁၂၃၄၅၆၇ (မောင်မောင်)၊ ၀၉၁၂၃၄၅၆၆ (အောင်အောင်)"
val result = extractor.extract(input) //[091234567, 091234566]
If you use gradle, include
repositories {
mavenCentral()
}
implementation 'dev.aungkyawpaing.mmphonenumber:mmphonenumber:1.1.1'
VERSION LOWER THAN 1.1.1 IS PUBLISHED ON JCENTER
- myanmar-phonenumber.js
- Kaung Myat Lwin for giving me some pointers in porting
Copyright 2019 Aung Kyaw Paing
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.