从URL链接中查找特定字符

时间:2018-03-28 07:31:03

标签: swift string url double latitude-longitude

如何使用Swift 3从URL字符串变量中找出特定字符? A URL is visible photo, i want to get the value out of the URL user_lati,user_long,destination_lat,destinaton_long

我想从URLlink中获取值(给出图像)user_lati,user_long,destination_lat,destinaton_long并保存。

任何人都可以为我提供解决方案吗?

1 个答案:

答案 0 :(得分:0)

我在下面给出了几个例子。您应该检查StringURLCollections

的文档
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