Quote:
Originally Posted by madelonw
Is there a way to indicate "any number" in search and replace when editing book metadata?
For example, multiple books include the series as part of the title
Seriesname 12 Book Title 1
Seriesname 44 Book Title 2
TIA
Madelon
|
\d+ is any quantity of digits (1 to n ) in REGEX mode
or
[3-7] only the single digit 3,4,5,6,7