Regex:
Nov/([0-3][0-9])
Tests:
Wed Nov/21/2012 - ...
===>Nov/21
OKWed 21/Nov/2012 - ...
===>Nov/20
BAD
Is there a way to ignore the second case with regex?
(The only method I can think of is to add a single space before the current regex but that feels like a hack and I was wondering if there is a proper approach)
I'm doing this with Java (java.util.regex package).