In Objective C, one could do the following to check for strings:
if ([myString isEqualToString:@\"\"]) { NSLog(@\"m
For optional Strings how about:
if let string = string where !string.isEmpty { print(string) }