mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
[DOC] Tweaks for String#force_encoding
This commit is contained in:
parent
6d466a55bd
commit
d7bc1378d2
1 changed files with 8 additions and 7 deletions
|
@ -1,5 +1,6 @@
|
||||||
Changes the encoding of +self+ to +encoding+,
|
Changes the encoding of +self+ to the given +encoding+,
|
||||||
which may be a string encoding name or an Encoding object;
|
which may be a string encoding name or an Encoding object;
|
||||||
|
does not change the underlying bytes;
|
||||||
returns self:
|
returns self:
|
||||||
|
|
||||||
s = 'łał'
|
s = 'łał'
|
||||||
|
@ -7,14 +8,14 @@ returns self:
|
||||||
s.encoding # => #<Encoding:UTF-8>
|
s.encoding # => #<Encoding:UTF-8>
|
||||||
s.force_encoding('ascii') # => "\xC5\x82a\xC5\x82"
|
s.force_encoding('ascii') # => "\xC5\x82a\xC5\x82"
|
||||||
s.encoding # => #<Encoding:US-ASCII>
|
s.encoding # => #<Encoding:US-ASCII>
|
||||||
|
s.valid_encoding? # => true
|
||||||
Does not change the underlying bytes:
|
|
||||||
|
|
||||||
s.bytes # => [197, 130, 97, 197, 130]
|
s.bytes # => [197, 130, 97, 197, 130]
|
||||||
|
|
||||||
Makes the change even if the given +encoding+ is invalid
|
Makes the change even if the given +encoding+ is invalid
|
||||||
for +self+ (as is the change above):
|
for +self+ (as is the change above):
|
||||||
|
|
||||||
s.valid_encoding? # => false
|
s.valid_encoding? # => false
|
||||||
s.force_encoding(Encoding::UTF_8) # => "łał"
|
|
||||||
s.valid_encoding? # => true
|
See {Encodings}[rdoc-ref:encodings.rdoc].
|
||||||
|
|
||||||
|
Related: see {Modifying}[rdoc-ref:String@Modifying].
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue