PadRight
func PadRight(str string, padWith string, padTo int) string
PadRight - Pad a string to a certain length with another string on the right side. If padding string is more than one char, it might be trucated to fit padTo size.
func PadRight(str string, padWith string, padTo int) string
PadRight - Pad a string to a certain length with another string on the right side. If padding string is more than one char, it might be trucated to fit padTo size.