gpt4 book ai didi

ios - 快速解析ip

转载 作者:行者123 更新时间:2023-11-30 12:43:03 25 4
gpt4 key购买 nike

我正在尝试解析 an 以进行验证,就像

var ip = "192.168.1.2"

因此,我需要在 api 调用中传递此 ip 以获取响应,因为我需要传递从 "192.168.1.[1-255]"255< 的 ip/strong>,以获得响应。

我的问题是如何实现这一点,我需要用“.”来溢出字符串吗?并移入数组并使用索引搜索 4。直到 255。

或者还有其他方法可以实现吗?

最佳答案

//如果你有固定的本地ip,如“192.168.1.x”

for i in 1...255 {
let ip = "192.168.1.\(i)"
// Call the API with ip
}

//如果您从其他服务或引用获取本地IP,则

let ip = "192.168.1.10"
let ipAry = ip.components(separatedBy: ".")
let ipStr = "\(ipAry[0]).\(ipAry[1]).\(ipAry[2])"

for i in 1...255 {
let newIP = "\(ipStr).\(i)"
// Call the API with ip
}

关于ios - 快速解析ip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42017779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com