我需要用 Swift 保存一个 url 参数
I need to save an url parameter with Swift
我有一个 URL 这样的:
let myURL = http://localhost/#access_token=12312312.1231231.31321
我需要从 URL 中取出“12312312.1231231.31321”。我试过使用 componentsSeparatedByString 但我没有得到我需要的东西。
看你的问题,确实就是你提到的使用componentsSeparatedByString
let myURL = "http://localhost/#access_token=12312312.1231231.31321"
let strings = myURL.components(separatedBy: "=")
print(strings[1]) //strings[1] will give you the "12312312.1231231.31321"
在这种情况下,componentsSeparatedByString
将 return 由 "="
分隔的字符串数组。
我有一个 URL 这样的:
let myURL = http://localhost/#access_token=12312312.1231231.31321
我需要从 URL 中取出“12312312.1231231.31321”。我试过使用 componentsSeparatedByString 但我没有得到我需要的东西。
看你的问题,确实就是你提到的使用componentsSeparatedByString
let myURL = "http://localhost/#access_token=12312312.1231231.31321"
let strings = myURL.components(separatedBy: "=")
print(strings[1]) //strings[1] will give you the "12312312.1231231.31321"
在这种情况下,componentsSeparatedByString
将 return 由 "="
分隔的字符串数组。