Quote:
Originally Posted by ownedbycats
Any idea why this replace_metadata would fail to remove " (Fandom)"? Regex101 indicates that the pattern matches.
Code:
## Character standardization and dedepublication
## Removing some fandoms first
characters=>\s(\(Elder Scrolls\)|\(Fallout\)|\(Mass Effect\)|\(Skyrim\))$=>
This works but leaves behind an extraneous space:
Code:
characters=>\(Elder Scrolls\)|\(Fallout\)|\(Mass Effect\)|\(Skyrim\)$=>
Here's a fic for testing.

|
Hey for a non native English speaker (and I don't often run into words I don't know the exact meaning of), what exactly do you mean with "extraneous space" it kinda translates into weird space but when I try this in my test library I see nothing weird coming up. Which could mean I have some setting you don't or the cause lies elsewhere.