hasMatch method

bool hasMatch(
  1. String source
)

正则表达式匹配

Implementation

bool hasMatch(String source) => RegExp(source).hasMatch(this);