Skip to content

Instantly share code, notes, and snippets.

@eimg
Last active May 5, 2022 08:31
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save eimg/35a632807e0451740c0893e40762f18b to your computer and use it in GitHub Desktop.
Save eimg/35a632807e0451740c0893e40762f18b to your computer and use it in GitHub Desktop.
Convert Myanmar numbers to English numbers
// INPUT: ၁၁.၁၂.၂၀၁၇
// OUTPUT: 11.12.2017
function mm2en(num) {
var nums = { '၀': '0', '၁': 1, '၂': 2, '၃': 3, '၄': 4 , '၅': 5, '၆': 6, '၇':7, '၈':8, '၉':9 };
return num.replace(/([၀-၉])/g, function(s, key) {
return nums[key] || s;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment