判断字符串是否匹配正则表达式
返回一个布尔值,表示字符串是否匹配正则表达式
bool isMatch(String regexp) { return RegExp(regexp).hasMatch(this); }