end
end
end elseif (elements[2] == ELEMENT_TIMESEPARATOR) then -- '10:'
if (elements[3] == ELEMENT_ONETWODIGITS) then -- '10:28'
if (elements[4] == ELEMENT_TIMESEPARATOR) then -- '10:28:'
if (elements[5] == ELEMENT_ONETWODIGITS) then -- '10:28:27'
if (numberOfElements == 5) then return checkAndOutput(nil, nil, nil, values[1], values[3], values[5]) end
if (elements[6] == ELEMENT_WHITESPACE or elements[5] == ELEMENT_COMMA) then -- '10:28:27, '
if (elements[7] == ELEMENT_ONETWODIGITS) then -- '10:28:27, 3'
if (elements[8] == ELEMENT_WHITESPACE) then -- '10:28:27, 3 '
if (elements[9] == ELEMENT_MONTHWORD) then -- '10:28:27, 3 May'
if (elements[10] == ELEMENT_WHITESPACE) then -- '10:28:27, 3 May '
if (elements[11] == ELEMENT_FOURDIGITS) then -- '10:28:27, 3 May 2013'
if (numberOfElements == 11) then return checkAndOutput(values[11], values[9], values[7], values[1], values[3], values[5]) end
end
end
end
|