Help!
I need to extract dates from a comments-type column to a date-type column via bulk search and replace.
For example:
Code:
Published: 2015-10-23 Completed: 2015-10-28 Chapters: 4/4 Words: 4726
Published: 2015-04-17 Updated: 2015-07-27 Chapters: 41/? Words: 81868
I have the following search regex:
Code:
.*(Completed|Updated): (?P<year>\d\d\d\d)-(?P<month>\d\d)-(?P<day>\d\d).*
What format should I use for replace?
Thanks!