Converting strings to other objects
Methods
Public Instance methods
‘a’.ord == ‘a’[0] for Ruby 1.9 forward compatibility.
[ show source ]
# File activesupport/lib/active_support/core_ext/string/conversions.rb, line 9
9: def ord
10: self[0]
11: end
[ show source ]
# File activesupport/lib/active_support/core_ext/string/conversions.rb, line 18
18: def to_date
19: ::Date.new(*::Date._parse(self, false).values_at(:year, :mon, :mday))
20: end
[ show source ]
# File activesupport/lib/active_support/core_ext/string/conversions.rb, line 22
22: def to_datetime
23: ::DateTime.civil(*::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 })
24: end
Form can be either :utc (default) or :local.
[ show source ]
# File activesupport/lib/active_support/core_ext/string/conversions.rb, line 14
14: def to_time(form = :utc)
15: ::Time.send("#{form}_time", *::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 })
16: end