isZh method
Return whether input matches regex of Chinese character.
Implementation
bool isZh() {
return '〇' == this || matches(regexZh);
}
Return whether input matches regex of Chinese character.
bool isZh() {
return '〇' == this || matches(regexZh);
}