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
initialize
Var text: string? = nil
Printing
print("my string", text! as string)
This will avoid word "optional" before the string.