Hey,
I want to return the two words before a date more than once with Regex
Ex: I want to parse this date of birth 03/03/1999 and also i want to parse out this date as well with this text 2/2/2000
Result to be:
RegExOut1 Regexout2 RegexOut3 RegexOut4
of birth 03/03/1999 this text 2/2/2000
I used this expression but it only returned out 1 & 2 only, it didn't parse out the rest of the text. I tried different things but can't get it to work
([a-z]+\s[a-z]+)\s(\d{1,2}\/\d{1,2}\/\d{4})