From: usa@... Date: 2016-08-04T05:56:09+00:00 Subject: [ruby-core:76697] [Ruby trunk Bug#12477][Rejected] Regexp with x modifier does not ignore space in character class Issue #12477 has been updated by Usaku NAKAMURA. Status changed from Closed to Rejected ---------------------------------------- Bug #12477: Regexp with x modifier does not ignore space in character class https://bugs.ruby-lang.org/issues/12477#change-59913 * Author: Daniel DeLorme * Status: Rejected * Priority: Normal * Assignee: * ruby -v: ruby 2.3.2p120 (2016-05-21 revision 55092) [x86_64-linux] * Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN ---------------------------------------- The x modifier should cause all non-escaped spaces to be ignored in a regexp, right? But consider that ~~~ / [a] /x =~ " " #=> nil / [ ] /x =~ " " #=> 0 ~~~ So spaces inside a character class are always literal, regardless of the x modifier. This has got to be a bug right? -- https://bugs.ruby-lang.org/ Unsubscribe: