I load a value from a dictionary in a plist but when I print it to the console, it prints: Optional(Monday Title) rather than just \"Monday Title\".
How can I get ri
Another, slightly more compact, way (clearly debatable, but it's at least a single liner)
(result["ip"] ?? "unavailable").description
.
In theory result["ip"] ?? "unavailable"
should have work too, but it doesn't, unless in 2.2
Of course, replace "unavailable" with whatever suits you: "nil", "not found" etc