Flowdock
method

center

Importance_1
v3.2.1 - Show latest stable - 0 notes - Class: ActiveSupport::Multibyte::Chars
center(integer, padstr=' ') public

Works just like String#center, only integer specifies characters instead of bytes.

Example:

"¾ cup".mb_chars.center(8).to_s
# => " ¾ cup  "

"¾ cup".mb_chars.center(8, " ").to_s # Use non-breaking whitespace
# => " ¾ cup  "
Show source
Register or log in to add new notes.