加入收藏 | 设为首页 | 会员中心 | 我要投稿 应用网_阳江站长网 (https://www.0662zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 创业 > 政策 > 正文

IPV4和IPV6正则表达式的深入讲解

发布时间:2020-12-15 23:13:17 所属栏目:政策 来源:做站长
导读:这篇文章主要给大家介绍了关于IPV4和IPV6正则表达式的相关资料,文中介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 IPV4正则表达式 Ipv4地址分为ABCDE五大类,其中ABC类是普通ip地址,D类是组播

assert (“::”.matches(finalRegex));
assert (“::8”.matches(finalRegex));
assert (“::7:8”.matches(finalRegex));
assert (“::6:7:8”.matches(finalRegex));
assert (“::5:6:7:8”.matches(finalRegex));
assert (“::4:5:6:7:8”.matches(finalRegex));
assert (“::3:4:5:6:7:8”.matches(finalRegex));
assert (“::2:3:4:5:6:7:8”.matches(finalRegex));

assert (“::192.168.1.1”.matches(finalRegex));

}

@Test
public void testIpv6_2() {
assert (“A:0f:0F:FFFF:5:6:7:8”.matches(finalRegex));
assert (!”A:0f:0F:FFFF1:5:6:7:8″.matches(finalRegex));
assert (!”G:0f:0F:FFFF:5:6:7:8″.matches(finalRegex));
}

@Test
public void testHttp() {
assert (“https://a.com”.matches(finalRegex));
assert (“https://a.b.c.com”.matches(finalRegex));
assert (“https://a”.matches(finalRegex));
assert (“https://a.comdddd”.matches(finalRegex));
assert (!”https://afadfadfadfadfadfadfadfadfadfffffffffffffffffffffffffffffffffffffffffffffffdfadfadfadfadfadfadfadfaafadfadfadfadfadfadfadfadfadfffffffffffffffffffffffffffffffffffffffffffffffdfadfadfadfadfadfadfadfaafadfadfadfadfadfadfadfadfadfffffffffffffffffffffffffffffffffffffffffffffffdfadfadfadfadfadfadfadfa.comdddd”
.matches(finalRegex));
}

@Test
public void testDomain() {
assert (“a.com”.matches(finalRegex));
assert (“a.bdfad-dfadf.c.com”.matches(finalRegex));
assert (!”a.-bdfad-dfadf.c.com”.matches(finalRegex));
assert (“abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWSYZabcdefghijk.com”.matches(finalRegex));
assert (!”abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWSYZabcdefghijk1.com”.matches(finalRegex));
}

@Test
public void testEmpty() {
assert (“”.matches(finalRegex));
assert (!”1″.matches(finalRegex));

}
}

到此这篇关于IPV4和IPV6正则表达式的文章就介绍到这了,更多相关IPV4和IPV6正则表达式内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:脚本之家

链接:https://www.jb51.net/article/201691.htm

申请创业报道,分享创业好点子。点击此处,共同探讨创业新机遇!

本文素材来自互联网

(编辑:应用网_阳江站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

热点阅读