优化MAC地址正则(issue#IB95X4@Gitee)

This commit is contained in:
Looly
2024-12-05 10:39:20 +08:00
parent b361614003
commit 6f5de187df
3 changed files with 19 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
package org.dromara.hutool.core.regex;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class IssueIB95X4Test {
@Test
void isMacTest() {
Assertions.assertTrue(ReUtil.isMatch(PatternPool.MAC_ADDRESS, "ab1c.2d3e.f468"));
Assertions.assertTrue(ReUtil.isMatch(PatternPool.MAC_ADDRESS, "ab:1c:2d:3e:f4:68"));
Assertions.assertTrue(ReUtil.isMatch(PatternPool.MAC_ADDRESS, "ab-1c-2d-3e-f4-68"));
Assertions.assertTrue(ReUtil.isMatch(PatternPool.MAC_ADDRESS, "ab1c2d3ef468"));
}
}