Check string only alpha.
bool onlyAlpha(String str) { RegExp reg = RegExp(_Regex().onlyAlpha); return reg.hasMatch(str); }