let str = "abc" str.withCString { print(String(format: "%8s", $0)) } print(String(format: "%8@", str))
%s
%@