Given a month string such as:
"Feb"
or
"February"
Is there any core java or third party library functionality that would allow you to convert this string to the corresponding month number in a locale agnostic way?
|
|
You could parse the month using SimpleDateFormat:
Be careful comparing |
|||||
|
|
An alternative to SimpleDateFormat using Joda time:
|
||||