Skip to content

Instantly share code, notes, and snippets.

@yudapc
Last active November 16, 2023 03:21
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save yudapc/4c94a02f71cbe102d5105a109d9f4499 to your computer and use it in GitHub Desktop.
Save yudapc/4c94a02f71cbe102d5105a109d9f4499 to your computer and use it in GitHub Desktop.
Javascript Format NPWP. NPWP is ID tax each people of indonesian. Specificly in frontend need to format NPWP before render to user
//
// Javascript Format NPWP
//
function formatNpwp(value) {
if (typeof value === 'string') {
return value.replace(/(\d{2})(\d{3})(\d{3})(\d{1})(\d{3})(\d{3})/, '$1.$2.$3.$4-$5.$6');
}
}
console.log(formatNpwp('232323234444444'));
// Output 23.232.323.4-444.444
//
// Typescript Format NPWP
//
const npwpFormat = (nStr: string) => {
return nStr.replace(/(\d{2})(\d{3})(\d{3})(\d{1})(\d{3})(\d{3})/, '$1.$2.$3.$4-$5.$6');
};
console.log(formatNpwp('232323234444444'));
// Output 23.232.323.4-444.444
@REXY4
Copy link

REXY4 commented Jun 23, 2022

terimakasih mas Yuda sangat membantu

@zulfikar-ditya
Copy link

thanks

@amrikarisma
Copy link

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment