Flowdock
method

ljust

Importance_1
v2.3.8 - Show latest stable - 0 notes - Class: ActiveSupport::Multibyte::Chars
ljust(integer, padstr=' ') public

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

Example:

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

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