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