1
0
Fork 0
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:
Burdette Lamar 2022-03-31 15:09:25 -05:00 committed by GitHub
parent bb037f6d86
commit 056b7a8633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

View 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