Find Nth occurrence of date in data using regex -


I want to find the first and second date from the following data.

  10/26/2014 4 4 9 10/27/2014 1 2 1  

Is it possible to know the first date and second date with the Reazx (No programming - I use VB.Net)?

Do you mean it?

  \ d * \ / \ d * \ / \ d * [\ r \ n \ s] * (\ d) [\ r \ n \ s] * (\ d) [ \ R \ n \ s] * (\ d)  


Comments