Actions
Bug #4081
closedInconsistent result of String#inspect in case of '"' and '\\' on UTF-16LE encoded string.
Description
=begin
irb(main):001:0> a = '"\'.encode('utf-16le')
=> "" \ "
irb(main):002:0> a = '"\^%'.encode('utf-16le')
=> "" \ ^%"
irb(main):003:0> a[0]
=> "" "
irb(main):004:0> a[0].inspect
=> ""\"\x00""
irb(main):005:0> a[1]
=> "\ "
irb(main):006:0> a[1].inspect
=> ""\\\x00""
irb(main):007:0> a[2]
=> "^"
irb(main):008:0> a[2].inspect
=> ""^""
irb(main):009:0> a[3]
=> "%"
irb(main):010:0> a[3].inspect
=> ""%""
=end
Updated by nobu (Nobuyoshi Nakada) almost 14 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
=begin
This issue was solved with changeset r29868.
Heesob, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
Updated by phasis68 (Heesob Park) almost 14 years ago
=begin
It seems that r29868 is not a complete patch.
r29868 introduced another bug.
C:\work>irb
irb(main):001:0> 'abc"\'.encode('UTF-8')
=> "abc\abc"\abc""
=end
Actions
Like0
Like0Like0