I'm trying to print a list of Strings all padded to the same width.
In C, I would use something like printf("%40s", cstr),
where cstr is a C string.
In Swift, the best I could come up is this:
line += String(format: "%40s",string.cStringUsingEncoding(<someEncoding>))
Is there a better way ?
question from:https://stackoverflow.com/questions/32338137/padding-a-swift-string-for-printing