[ruby-core:96124] [Ruby master Bug#16402] UTF-16LE BOM causing regex match to fail with "invalid byte sequence in UTF-8"

[email protected]
Newsgroups gmane.comp.lang.ruby.core
Message-ID <redmine.journal-82983.20191206012915.f2ca679c58a46b6d@ruby-lang.org>
Issue #16402 has been updated by PikachuEXE (Pikachu Leung).


Thanks for your answer
But I actually encounter this when processing text input from remote data source
And would not be using `File.read`

``` ruby
text = HTTPClient.new.get(
  data_feed_url,
  follow_redirect: true,
).tap do |response|
  raise "Unexpected response code: #{response.status}" unless response.ok?
end.body
```


----------------------------------------
Bug #16402: UTF-16LE BOM causing regex match to fail with "invalid byte sequence in UTF-8"
https://bugs.ruby-lang.org/issues/16402#change-82983

* Author: PikachuEXE (Pikachu Leung)
* Status: Feedback
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-darwin18]
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
``` shell
$ ruby -e 'File.binwrite("u.txt", "\xff\xfe\x00\x01")'
$ file u.txt 
u.txt: Little-endian UTF-16 Unicode text, with no line terminators
$ ruby -e 'p /\w+/.match?(File.read("u.txt"))'
Traceback (most recent call last):
	1: from -e:1:in `<main>'
-e:1:in `match?': invalid byte sequence in UTF-8 (ArgumentError)
```

No error should be raised, just like when comparing with string without BOM

``` shell
$ ruby -e 'p /\w+/.match?(File.read("u.txt")[2..-1])'
false

```




-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.