mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[DOC] Enhanced RDoc for String (#5742)
Treats: #force_encoding #b #valid_encoding? #ascii_only? #scrub #scrub! #unicode_normalized? Plus a couple of minor tweaks.
This commit is contained in:
parent
bb037f6d86
commit
056b7a8633
Notes:
git
2022-04-01 05:09:44 +09:00
Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
4 changed files with 101 additions and 69 deletions
20
doc/string/force_encoding.rdoc
Normal file
20
doc/string/force_encoding.rdoc
Normal file
|
@ -0,0 +1,20 @@
|
|||
Changes the encoding of +self+ to +encoding+,
|
||||
which may be a string encoding name or an Encoding object;
|
||||
returns self:
|
||||
|
||||
s = 'łał'
|
||||
s.bytes # => [197, 130, 97, 197, 130]
|
||||
s.encoding # => #<Encoding:UTF-8>
|
||||
s.force_encoding('ascii') # => "\xC5\x82a\xC5\x82"
|
||||
s.encoding # => #<Encoding:US-ASCII>
|
||||
|
||||
Does not change the underlying bytes:
|
||||
|
||||
s.bytes # => [197, 130, 97, 197, 130]
|
||||
|
||||
Makes the change even if the given +encoding+ is invalid
|
||||
for +self+ (as is the change above):
|
||||
|
||||
s.valid_encoding? # => false
|
||||
s.force_encoding(Encoding::UTF_8) # => "łał"
|
||||
s.valid_encoding? # => true
|
Loading…
Add table
Add a link
Reference in a new issue