Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to remove nil (null) from a dictionary in Swift

1 Answer

0 votes
import Foundation

var dict:[String:Int?] = ["swift": nil, "c": 3, "c++": nil, "python": 2, "java": nil]

print("Original values: ", dict)

/*
The filter function iterates over each key-value pair.
$0 refers to a tuple (key, value), $0.1 accesses the value part.
It keeps only those pairs where the value isn’t nil.
*/

// Removing nil 
dict = dict.filter{$0.1 != nil}

print("Dictionary without nil (null) values: \(dict)")



/*
run:

Original values:  ["swift": nil, "c++": nil, "python": Optional(2), "java": nil, "c": Optional(3)]
Dictionary without nil (null) values: ["c": Optional(3), "python": Optional(2)]

*/

 



answered Aug 5, 2025 by avibootz
...