ReUtil增加getAllGroups重载

This commit is contained in:
Looly 2022-07-17 00:30:39 +08:00
parent eb9df251d5
commit 5d500f8f14
4 changed files with 35 additions and 4 deletions

View File

@ -19,6 +19,7 @@
* 【core 】 修复Dict#containsKey方法没区分大小写问题pr#697@Gitee
* 【core 】 增加比较两个LocalDateTime是否为同一天pr#693@Gitee
* 【core 】 增加TemporalAccessorUtil.isIn、LocalDateTimeUtil.isInissue#I5HBL0@Gitee
* 【core 】 ReUtil增加getAllGroups重载pr#2455@Github
*
### 🐞Bug修复
* 【core 】 修复CollUtil里面关于可变参数传null造成的crash问题pr#2428@Github

View File

@ -1021,7 +1021,7 @@ public class ArrayUtil extends PrimitiveArrayUtil {
* 获取数组中指定多个下标元素值组成新数组
*
* @param <T> 数组元素类型
* @param array 数组
* @param array 数组如果提供为{@code null}则返回{@code null}
* @param indexes 下标列表
* @return 结果
*/
@ -1029,10 +1029,13 @@ public class ArrayUtil extends PrimitiveArrayUtil {
if (null == array) {
return null;
}
if(null == indexes){
return newArray(array.getClass().getComponentType(), 0);
}
final T[] result = newArray(array.getClass().getComponentType(), indexes.length);
for (int i : indexes) {
result[i] = get(array, i);
for (int i = 0; i < indexes.length; i++) {
result[i] = ArrayUtil.get(array, indexes[i]);
}
return result;
}

View File

@ -206,18 +206,36 @@ public class ReUtil {
* @since 4.0.13
*/
public static List<String> getAllGroups(Pattern pattern, CharSequence content, boolean withGroup0) {
return getAllGroups(pattern, content, withGroup0, false);
}
/**
* 获得匹配的字符串匹配到的所有分组
*
* @param pattern 编译后的正则模式
* @param content 被匹配的内容
* @param withGroup0 是否包括分组0此分组表示全匹配的信息
* @param findAll 是否查找所有匹配到的内容{@code false}表示只读取第一个匹配到的内容
* @return 匹配后得到的字符串数组按照分组顺序依次列出未匹配到返回空列表任何一个参数为null返回null
* @since 4.0.13
*/
public static List<String> getAllGroups(Pattern pattern, CharSequence content, boolean withGroup0, boolean findAll) {
if (null == content || null == pattern) {
return null;
}
ArrayList<String> result = new ArrayList<>();
final Matcher matcher = pattern.matcher(content);
if (matcher.find()) {
while (matcher.find()) {
final int startGroup = withGroup0 ? 0 : 1;
final int groupCount = matcher.groupCount();
for (int i = startGroup; i <= groupCount; i++) {
result.add(matcher.group(i));
}
if(false == findAll){
break;
}
}
return result;
}

View File

@ -534,4 +534,13 @@ public class ArrayUtilTest {
String[] newArr = ArrayUtil.setOrAppend(arr, 0, "Good");// ClassCastException
Assert.assertArrayEquals(new String[]{"Good"}, newArr);
}
@Test
public void getAnyTest() {
final String[] a = {"a", "b", "c", "d", "e"};
final Object o = ArrayUtil.getAny(a, 3, 4);
final String[] resultO = (String[]) o;
final String[] c = {"d", "e"};
Assert.assertTrue(ArrayUtil.containsAll(c, resultO[0], resultO[1]));
}
}