mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
587 B
Swift
18 lines
587 B
Swift
import Foundation
|
|
|
|
public extension String {
|
|
func rightJustified(width: Int, pad: String = " ", truncate: Bool = false) -> String {
|
|
guard width > count else {
|
|
return truncate ? String(suffix(width)) : self
|
|
}
|
|
return String(repeating: pad, count: width - count) + self
|
|
}
|
|
|
|
func leftJustified(width: Int, pad: String = " ", truncate: Bool = false) -> String {
|
|
guard width > count else {
|
|
return truncate ? String(prefix(width)) : self
|
|
}
|
|
return self + String(repeating: pad, count: width - count)
|
|
}
|
|
}
|