Flowdock
method

chars

Importance_2
v1.2.6 - Show latest stable - 0 notes - Class: ActiveSupport::CoreExtensions::String::Unicode
  • 1.0.0
  • 1.1.6
  • 1.2.6 (0)
  • 2.0.3
  • 2.1.0 (-38)
  • 2.2.1
  • 2.3.8
  • 3.0.0
  • 3.0.9
  • 3.1.0
  • 3.2.1
  • 3.2.8
  • 3.2.13
  • 4.0.2
  • 4.1.8
  • 4.2.1
  • 4.2.7
  • 4.2.9
  • 5.0.0.1
  • 5.1.7
  • 5.2.3
  • 6.0.0
  • 6.1.3.1
  • 6.1.7.7
  • 7.0.0
  • 7.1.3.2
  • What's this?
chars() public

chars is a Unicode safe proxy for string methods. It creates and returns an instance of the ActiveSupport::Multibyte::Chars class which encapsulates the original string. A Unicode safe version of all the String methods are defined on this proxy class. Undefined methods are forwarded to String, so all of the string overrides can also be called through the chars proxy.

  name = 'Claus Müller'
  name.reverse #=> "rell??M sualC"
  name.length #=> 13

  name.chars.reverse.to_s #=> "rellüM sualC"
  name.chars.length #=> 12

All the methods on the chars proxy which normally return a string will return a Chars object. This allows method chaining on the result of any of these methods.

  name.chars.reverse.length #=> 12

The Char object tries to be as interchangeable with String objects as possible: sorting and comparing between String and Char work like expected. The bang! methods change the internal string representation in the Chars object. Interoperability problems can be resolved easily with a to_s call.

For more information about the methods defined on the Chars proxy see ActiveSupport::Multibyte::Chars and ActiveSupport::Multibyte::Handlers::UTF8Handler

Show source
Register or log in to add new notes.