isZh method

bool isZh()

Return whether input matches regex of Chinese character.

Implementation

bool isZh() {
  return '〇' == this || matches(regexZh);
}