I am scratching my head over this. For example I have:
Date
sometext
somtext
27-7-2013
What I want to do is I want to get the first date format string pattern after the Date keyword. Here is what I currently have:
(?i)(?<=date.*)\d+-\d+\d+
But unfortunately, I am getting nothing and if I just try to get all the string after the date keyword, e.g.
(?i)date.*
I am only getting the result as:
Date[CR]
I am using Expresso to test out my regular expressions. I am pretty new with using regex so I am not familiar with how to do things and stuff.
Please help! Thanks!