如何判断两个主机名是否在同一个域中
如何编写代码来确定两个主机名是否在同一个域中?
喜欢 :
www.example.com
and login.eample.com
in same domainwww.example.com.us
and login.exmaple.com.us
in same domainx105.www.example.com
and login.example.com
in same domin如果可能的话,甚至 www.example.com
和 login.example.com.us
在同一域中
How to write code to decide if two host name in same domain ?
like :
www.example.com
and login.eample.com
in same domainwww.example.com.us
and login.exmaple.com.us
in same domainx105.www.example.com
and login.example.com
in same dominand even www.example.com
and login.example.com.us
in same domain if possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用perl,因为没有提到任何语言,请原谅任何生锈......
正则表达式会给你第一个实例的域作为捕获的字符串($1)。如果是 perl,您可以使用捕获的字符串来查看它们是否匹配。
Using perl since no language was mentioned, pardon any rust...
that regex would give you the domain of the first instance as a captured string ($1). You could use that captured string, if this was say perl, like this to see if they match.