我想从URLlink中获取值(给出图像)user_lati,user_long,destination_lat,destinaton_long并保存。
任何人都可以为我提供解决方案吗?
答案 0 :(得分:0)
我在下面给出了几个例子。您应该检查String,URL和Collections
的文档let urlString = "https://www.example.com/search?q=test&user=john"
let url = URL(string: urlString)!
print(url.query) // q=test&user=john
print(urlString.index(of: "?")?.encodedOffset) // 30 - index of ?
print(url.absoluteString.index(of: "?")?.encodedOffset) // same as above