mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
commit
9d487d3f36
@ -1006,6 +1006,26 @@ public class CharSequenceUtil {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查指定字符串中是否含给定的所有字符串
|
||||
*
|
||||
* @param str 字符串
|
||||
* @param testChars 检查的字符
|
||||
* @return 字符串含有非检查的字符,返回false
|
||||
* @since 4.4.1
|
||||
*/
|
||||
public static boolean containsAll(CharSequence str, CharSequence... testChars) {
|
||||
if (isBlank(str) || ArrayUtil.isEmpty(testChars)) {
|
||||
return false;
|
||||
}
|
||||
for (CharSequence testChar : testChars) {
|
||||
if (false == contains(str, testChar)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 给定字符串是否包含空白符(空白符包括空格、制表符、全角空格和不间断空格)<br>
|
||||
* 如果给定字符串为null或者"",则返回false
|
||||
|
@ -611,4 +611,12 @@ public class StrUtilTest {
|
||||
String a = "2142342422423423";
|
||||
Assert.assertTrue(StrUtil.isNumeric(a));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void containsAllTest() {
|
||||
String a = "2142342422423423";
|
||||
Assert.assertTrue(StrUtil.containsAll(a, "214", "234"));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user