I am trying to use this expression:
var reg = "/(jan|feb|mar)[A-z]*\[0-9]/"
to capture at least the first three letters of the month(or more letters) plus a digit. This does not work however. When I remove the parenthesis, it works but then the [A-z]*[0-9] bit only aplies to march. Please help, thanks.