method

_parse_mday

v1_8_6_287 - Show latest stable - Class: Date
_parse_mday(str, e)
private

No documentation available.

# File lib/date/format.rb, line 880
  def self._parse_mday(str, e) # :nodoc:
    if str.sub!(/(\d+)(st|nd|rd|th)\b/in, ' ')
      e.mday = $1.to_i
      true
    end
  end