Hello Yusuf and Gerdb42,
Gerdb42, I think that, annoyed about waiting 3 minutes to correct your post, your just omit the 3 groups to re-arrange the date :-))
So, Yusuf, the correct Gerdb42 S/R is, of course :
SEARCH : (\d{2})/(\d{2})/(\d{2})
REPLACE : \2/\1/20\3
Cheers,
guy038
P.S. :
Oh ! Thinking about the 2000’s years, here is an other solution :
SEARCH : (\d{2})/(\d{2})/(([0-4])\d|[5-9]\d)
REPLACE : \2/\1/(?{4}20:19)\3
So, supposing the year, written with TWO digits :
If the year is between the 00 and 49 values, we rewrite the string 20, followed by the year value
If the year is between the 50 and 99 values, we rewrite the string 19, followed by the year value
For instance, the two dates :
12/15/49
01/15/50
would be changed into :
15/12/2049
15/01/1950