正则表达式
static bool expHasMatch(String value, String express) { String exp = 'r"$express"'; RegExp url = new RegExp(exp); return url.hasMatch(value); }