to_arabic_number 1.0.1
to_arabic_number: ^1.0.1 copied to clipboard
A Dart package to convert numbers within a string to Arabic numerals.
example/to_arabic_number_example.dart
import 'package:to_arabic_number/to_arabic_number.dart';
void main() {
/// Example 1
print(Arabic.number("The year is 2024 and the time is 12:45 PM."));
/// Example 2
print(Arabic.number("These '0123456789' will be Arabic numbers"));
}