reg_utils.dart 485 B

12345678910111213141516
  1. /// 正则表达校验
  2. class RegCheckUtils {
  3. static bool isLocalImagePath(String path) {
  4. return RegExp(r'^/.+').hasMatch(path); // 匹配以 / 开头的本地路径
  5. }
  6. static bool isNetworkImagePath(String path) {
  7. return RegExp(r'^(http|https)://.+').hasMatch(path); // 匹配以 http 或 https 开头的网络路径
  8. }
  9. static bool isAssetPath(String path) {
  10. return RegExp(r'^[a-zA-Z0-9]+://').hasMatch(path); // 匹配以字母数字开头的资源路径
  11. }
  12. }