parent
576d826792
commit
272fc56de8
@ -1,10 +1,31 @@
|
||||
extension PhoneExt on String {
|
||||
String get phone {
|
||||
List get _parsePhone {
|
||||
if (this.length < 11)
|
||||
return [];
|
||||
else
|
||||
return [
|
||||
this.substring(0, 3),
|
||||
this.substring(3, 7),
|
||||
this.substring(7, 11),
|
||||
];
|
||||
}
|
||||
|
||||
bool get _validPhone => _parsePhone.isNotEmpty;
|
||||
|
||||
///电话号码加分隔线
|
||||
return (this.substring(0, 3) +
|
||||
'-' +
|
||||
this.substring(3, 7) +
|
||||
'-' +
|
||||
this.substring(7, 11));
|
||||
///
|
||||
///example 18888888888 => 188-8888-8888
|
||||
String get phone {
|
||||
if (!_validPhone)
|
||||
return this;
|
||||
else
|
||||
return '${_parsePhone[0]}-${_parsePhone[1]}-${_parsePhone[2]}';
|
||||
}
|
||||
|
||||
String get securePhone {
|
||||
if (!_validPhone)
|
||||
return this;
|
||||
else
|
||||
return '${_parsePhone[0]}****${_parsePhone[2]}';
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue