說,我有以下網址。如何在字典排序鍵值,並返回一個字符串
我的鍵值存儲在一個字典
let strURL = "https://www.x.com/?d=1&a=2&b=3&c=4&nbr=1234567890"
let items = URLComponents(string:strURL)?.queryItems
var KeyValues:[String:String] = [:]
items?forEach {
item in KeyValues[item.name] = item.value
}
問題:如何排序並輸出從鍵值來使得
string = "a=1&b=2&c=3&d=4&nbr=1234567890"
感謝串
考慮一個查詢字符串的行爲像一個特定順序無關緊要的字典。 – vadian