Julian Dates are a different way to display a date. Instead of the standard date format "01/23/2014", a Julian date would be "14023". The first two digits are the year where as the last 3 digits are the numbers of days into the year.
Other examples:
14364 to 12/30/2014
14300 to 10/27/2014
14123 to 05/03/2014
The year would be simple enough to pattern match against. However, are there any good ways to convert the last three digits into a month day format? Thanks for all the help!
EDIT: A user pointed out that it was called Ordinal Date as opposed to Julian Date. Thanks!