Quote:
Originally Posted by JimmXinu
When you want to match and replace exactly and only a particular string (and not substrings), put '^' and '$' around the pattern to indicate string beginning and end. IE, this will only replace "Marvel" alone and not inside any other string:
Code:
replace_metadata:
^Marvel$=>Marvel Cinematic Universe
|
Adding ^$ worked! I put it around the problematic fandom and everything's fine now. Thank you!