View Single Post
Old 01-16-2023, 11:05 AM   #7952
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 7,025
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Because the pattern matches - Fandom\(Movies\) but not - Fandom.

If your intention is reduce all variants of Half-Life to just Half-Life, rather than matching each variant, you could do:
Code:
replace_metadata:
 ^.*(Half-Life).*$=>\1

# case insensitive version, match half-life, Half-life, half-lIFE, etc
replace_metadata:
 (?i)^.*(Half-Life).*$=>Half-Life
JimmXinu is offline   Reply With Quote