menu
yuro package
documentation
yuro_util/src/string.dart
StringExt
isPhone method
isPhone method
dark_mode
light_mode
isPhone
method
bool
isPhone
(
)
判断字符串是否是手机号
Implementation
bool isPhone() => RegExp(r'^1(3|4|5|6|7|8|9)\d{9}$').hasMatch(this);
yuro package
documentation
yuro_util/src/string
StringExt
isPhone method
StringExt extension on
String