Center, left justify and right justify string : String format « String « Ruby
- Ruby
- String
- String format
Center, left justify and right justify string
s = "Some text."
s.center(15) # => " Some text. "
s.ljust(15) # => "Some text. "
s.rjust(15) # => " Some text."
Related examples in the same category