You need to escape ‘.’
It is being matched with any character.
Try this
(Jan\.|Feb\.|Mar\.|Apr\.|May\.)
Instead of this better use single dot in the end
((Jan|Feb|Mar|Apr|May)\.)
4
solved Regular Expression – date format [closed]
You need to escape ‘.’
It is being matched with any character.
Try this
(Jan\.|Feb\.|Mar\.|Apr\.|May\.)
Instead of this better use single dot in the end
((Jan|Feb|Mar|Apr|May)\.)
4
solved Regular Expression – date format [closed]