验证邮箱 @param param 参数 @return
(String param)
| 290 | * @return |
| 291 | */ |
| 292 | public static boolean isEmail(String param){ |
| 293 | if (EMAIL.matcher(param).matches()) { |
| 294 | return true; |
| 295 | } |
| 296 | return false; |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * 验证座机 |
no test coverage detected