Actions
Bug #16768
closed"\n" started not to work as a delimiter in time zone names for Date._strptime since 2.7.0
Description
Confirmed on: Ruby 2.7.0 on Mac OS X 10.13.
require 'date'
DateTime._strptime("aus\neastern standard time", "%z")
Expected (Ruby 2.6.3 works like this):
=> {:zone=>"aus\neastern standard time", :offset=>36000}
Actual on Ruby 2.7.0 :
=> {:zone=>"aus\neastern standard time", :offset=>nil}
Appendix:
- A space character case, such as
"aus eastern standard time"
, still works on Ruby 2.7.0.
Actions
Like0
Like0