I have the left and right folders looking like:
I can get the pairs to align by right clicking on each and adding the alignment, but I can't find a normal or regular expression that would align the entire folder. So far, I've tried these expressions:
[0-9]{8}_[0-9]{6}.*.jpg (both sides the same, regex checked)
*_*.jpg on the left and *_*_*.jpg on the right (regex unchecked)
Do you have any suggestions of other expressions to try? The file names will always be in the same format, but the names themselves could be completely different.
Thanks, - jc
Code:
20090511_170811.jpg 20090511_170811_0933.jpg 20090511_170805.jpg 20090511_170805_0932.jpg
[0-9]{8}_[0-9]{6}.*.jpg (both sides the same, regex checked)
*_*.jpg on the left and *_*_*.jpg on the right (regex unchecked)
Do you have any suggestions of other expressions to try? The file names will always be in the same format, but the names themselves could be completely different.
Thanks, - jc
Comment