I'd like to find the 30, 12/1, 2, 3 and so on, in some calendar data I'm parsing from html, but not 2014 or 09:30
So far I've tried
[\d]{1,2}[/]?[\d]{1,2}[^:]
and a lot of different variations, but nothing seems to fit.
Is there a way to find the desired dates with one regex, or would it make more sense to ask either for a number between0 - 31 or a string containig numbers and /?
Thanks for any help :)
Edit:
The data I'm parsing looks like this:
30
Name, Ofsomeone
Name, Ofsomeone
Name, Ofsomeone
weg.ics
GMT+01:00Amsterdam,Berlin,Bern,Rome,Stockholm,Vienna
weg:December2014
Day
WorkWeek
Week
Month
Today
December2014
December2014
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
12/1
Name, Ofsomeone
Name, Ofsomeone
Name, Ofsomeone
2
Name, Ofsomeone
Name, Ofsomeone
3
Name, Ofsomeone
Name, Ofsomeone


