number_to_words_nepali 1.0.1 copy "number_to_words_nepali: ^1.0.1" to clipboard
number_to_words_nepali: ^1.0.1 copied to clipboard

A Dart library to convert numbers to their Nepali word representations.

example/example.dart

import 'package:number_to_words_nepali/number_to_words_nepali.dart';

void main() {
  //* Nepali language
  print('10000: ${NumberToWordsNepali().convertNumberToWordsNepali(10000)}');
  // 10000: दस हजार

  print('100001: ${NumberToWordsNepali().convertNumberToWordsNepali(100001)}');
  // 100001: एक लाख एक

  print(
      '11111111: ${NumberToWordsNepali().convertNumberToWordsNepali(11111111)}');
  // 11111111: एक करोड एघार लाख एघार हजार एक सय एघार

  print(
      '123456789: ${NumberToWordsNepali().convertNumberToWordsNepali(123456789)}');
  // 123456789: बाह्र करोड चौतीस लाख छपन्न हजार सात सय उनान्नब्बे

  print(
      '999999999999999999: ${NumberToWordsNepali().convertNumberToWordsNepali(999999999999999999)}');
  // 999999999999999999: नौ शंख उनान्सय पद्म उनान्सय नील उनान्सय खरब उनान्सय अरब उनान्सय करोड उनान्सय लाख उनान्सय हजार नौ सय उनान्सय

  //* English language
  print(
      '10000: ${NumberToWordsNepali(language: Language.english).convertNumberToWordsNepali(10000)}');
  // 10000: ten thousand

  print(
      '100001: ${NumberToWordsNepali(language: Language.english).convertNumberToWordsNepali(100001)}');
  // 100001: one lakh one

  print(
      '11111111: ${NumberToWordsNepali(language: Language.english).convertNumberToWordsNepali(11111111)}');
  // 11111111: one crore eleven lakh eleven thousand one hundred eleven

  print(
      '123456789: ${NumberToWordsNepali(language: Language.english).convertNumberToWordsNepali(123456789)}');
  // 123456789: twelve crore thirty-four lakh fifty-six thousand seven hundred eighty-nine

  print(
      '999999999999999999: ${NumberToWordsNepali(language: Language.english).convertNumberToWordsNepali(999999999999999999)}');
  // 999999999999999999:  nine shankh ninety-nine padma ninety-nine neel ninety-nine kharab ninety-nine arab ninety-nine crore ninety-nine lakh ninety-nine thousand nine hundred ninety-nine
}
8
likes
0
pub points
44%
popularity

Publisher

verified publishersubarnapdl.com.np

A Dart library to convert numbers to their Nepali word representations.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on number_to_words_nepali