matches method

bool matches(
  1. String regex
)

是否匹配正则表达式

Implementation

bool matches(String regex) {
  var file = this;
  if (file == null || file.isEmpty) {
    return false;
  }
  return RegExp(regex).hasMatch(file);
}