isQQ static method

bool isQQ(
  1. String input
)

Return whether input matches regex of QQ. 返回是否匹配QQ的正则表达式。

Implementation

static bool isQQ(String input) {
  return matches(RegexConstants.REGEX_QQ_NUM, input);
}