isNotEmptyAndIgnoreCaseContainsAny static method
是否str1
和str2
都非空,并且其中长的字符串包含端的字符串,忽略大小写
Implementation
static bool isNotEmptyAndIgnoreCaseContainsAny(String str1, String str2) {
if (str1.isEmpty || str2.isEmpty) {
return false;
}
return isIgnoreCaseContainsAny(str1, str2);
}