I have an array formatted like this:
["Trousers : 15.50", "Trousers : 15.50", "Jumper : 12.99", "Shoes: 50.00"]
I would like to format it like this:
["2x Trousers : 31.00", "1x Jumper : 12.99", "1x Shoes: 50.00"]
I tried formatting using this:
var counts: [String:Int] = [:]
var shoppingList = ["Trousers : 15.50", "Trousers : 15.50", "Jumper : 12.99", "Shoes: 50.00"]
var formattedShoppingList = [String]()
for item in shoppingList {
counts[item] = (counts[item] ?? 0) + 1
}
for (key, value) in counts {
let display:String = String(value) + "x " + key
formattedShoppingList.append(display)
}
But I get this
["2x Trousers : 15.50", "1x Jumper : 12.99", "1x Shoes: 50.00"]
If I use a dictionary I cannot have duplicates. How shall I proceed with this?
I would make a struct to represent Item name/price pairs (and perhaps other data in the future, like quantity in stock, for example).