Created
June 18, 2024 02:58
-
-
Save KenjiOhtsuka/ab528e570c8ad5664f209f7bea9eb3bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Require `PhoneNumberFormat`. | |
const PNF = require('google-libphonenumber').PhoneNumberFormat; | |
// Get an instance of `PhoneNumberUtil`. | |
const phoneUtil = require('google-libphonenumber').PhoneNumberUtil.getInstance(); | |
function test(text) { | |
// Parse number with country code and keep raw input. | |
let number = phoneUtil.parseAndKeepRawInput(text, 'JP'); | |
console.log(phoneUtil.formatInOriginalFormat(number, 'JP')); | |
// Format number in the national format. | |
console.log(phoneUtil.format(number, PNF.NATIONAL)); | |
} | |
test('0867250000') | |
test('0863670000') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment