Hi,
I need to extact Months names out of a given
string, I can do it easily using regular expressions
something like:
Pattern.compile(january|february|.....).matcher("22January")
so that I can get the month's name found in this string but I need more professional code for doing so, I mean these months must be defined in the Date class but i dont know how to reach to them
any ideas?