Skip to content

Phone API

phoneFormat(str: string)

핸드폰 번호 포맷으로 변경해주는 함수. (10자리와 11자리 가능.)

Example

Input

ts
const str = '01039397610';
console.dir(phoneFormat(str));

const str2 = '0239397610';
console.dir(phoneFormat(str2));

Output

text
"010-3939-7610"
"02-3939-7610"