v1.1.0
egyptian_id_parser
一個 Dart 套件,提供從埃及國民身分證號碼中提取個人資訊的功能。
59喜歡 54近 30 天下載150Pub 分數
AndroidiOSWebmacOSWindowsLinux
一個 Dart 套件,可從 14 位埃及國民身分證號碼中提取個人資訊,例如出生日期、性別和省區。
以下為英文專案原文快照,最新內容請造訪 GitHub。
pub package MIT License Latest Dartdocs Language: Dart GitHub stars All Contributors likes popularity pub points
The Egyptian ID Parser is a Dart package designed to extract personal information from the Egyptian National ID number. This package enables developers to easily retrieve essential details, including date of birth, gender, and governorate, from the 14-digit national ID.
YYYY-MM-DD from the national ID.pubspec.yaml file and import it into your project.dependencies:
egyptian_id_parser: ^1.1.0
EgyptianIdParser with a valid ID number to access birth date, governorate, gender, and age information. :
import 'package:egyptian_id_parser/egyptian_id_parser.dart';
void main() {
String idNumber = "12345678901234"; // Replace with a valid ID number
var id = EgyptianIdParser(idNumber);
print('Birth Date: ${id.birthDate}');
print('Governorate: ${id.governorate}');
print('Gender: ${id.gender}');
print('Age: ${id.age}');
}