作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我想弄清楚如何根据 ip 验证掩码 ip(在范围内?)。我似乎无法像在 java 中那样快速找到工具:
最佳答案
let ip = "192.168.2.0"
let net = "192.168.1.0"
let pref = 24
func convertIpToInt(_ ipAddress: String) -> Int? {
var result = 0.0
let ipAddressArray = ipAddress.components(separatedBy: ".").compactMap {
Double($0) }
guard ipAddressArray.count == 4 else { return nil }
for (index, element) in ipAddressArray.enumerated() {
result += element * pow(256, Double(3 - index))
}
return Int(result) > 0 ? Int(result) : nil
}
let ipInt = convertIpToInt(ip)
let netInt = convertIpToInt(net)
let brkstInt = netInt! + Int(pow(2, Double(32-pref))) - 1
print(ipInt! >= netInt! && ipInt! <= brkstInt) // false
关于iOS - 检查掩码 ip 是否有效(在 ip 范围内),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52259279/
我是一名优秀的程序员,十分优秀!