Please consider the following search:
You can setup any regular expression match you like and find duplicates on the regular expression capture.
regex: = enable regular expressions.
^ = match the start of the filename.
( ) = capture match
.* = match any character any number of times.
S = match a literal S
\d\d = match two digits
regex:^(.*S\d\d) addcolumn:regmatch1 dupe:regmatch1
You can setup any regular expression match you like and find duplicates on the regular expression capture.
regex: = enable regular expressions.
^ = match the start of the filename.
( ) = capture match
.* = match any character any number of times.
S = match a literal S
\d\d = match two digits
Statistics: Posted by void — Sat Aug 03, 2024 12:13 am