Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #214 Pad string on the right

Append extra character c at the end of string s to make sure its length is at least m.
The length is the number of characters, not the number of bytes.

import "strings"
import "utf8"
if n := utf8.RuneCountInString(s); n < m {
	s += strings.Repeat(c, m-n)
}

c here is a one-character string
s = s.PadRight(m, c);

New implementation...